From 7c9c28c3637b93b5419639770f5353f8571b2d87 Mon Sep 17 00:00:00 2001 From: harrismcgehee Date: Mon, 15 Aug 2016 08:33:25 -0400 Subject: [PATCH] Fix typo (#256) --- tidy.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tidy.Rmd b/tidy.Rmd index cd4ccb2..3e1189f 100644 --- a/tidy.Rmd +++ b/tidy.Rmd @@ -8,7 +8,7 @@ > "Tidy datasets are all alike, but every messy dataset is messy in its > own way." --– Hadley Wickham -In this chapter, you will learn a consistent way to organise your data in R, a organisation called __tidy data__. Getting your data into this format requires some upfront work, but that work pays off in the long-term. Once you have tidy data and the tidy tools provided by packages in the tidyverse, you will spend much less time munging data from one representation to another, allowing you to spend more time on the analytic questions at hand. +In this chapter, you will learn a consistent way to organise your data in R, an organisation called __tidy data__. Getting your data into this format requires some upfront work, but that work pays off in the long-term. Once you have tidy data and the tidy tools provided by packages in the tidyverse, you will spend much less time munging data from one representation to another, allowing you to spend more time on the analytic questions at hand. This chapter will give you a practical introduction to tidy data and the accompanying tools in the __tidyr__ package. If you'd like to learn more about the underlying theory, you might enjoy the *Tidy Data* paper published in the Journal of Statistical Software, .