fixed "from" typo

Changed "... isn't ready from prime time yet." at end of 5.7.1 to " isn't ready for prime time yet."
This commit is contained in:
spirgel 2016-04-02 16:43:08 -04:00
parent 53dc4b8784
commit f5fc355d73
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ This focuses on the transformations, not what's being transformed, which makes t
Behind the scenes, `x %>% f(y)` turns into `f(x, y)` so you can use it to rewrite multiple operations that you can read left-to-right, top-to-bottom. We'll use piping frequently from now on because it considerably improves the readability of code, and we'll come back to it in more detail in Chapter XYZ.
Most of the packages you'll learn through this book have been designed to work with the pipe (tidyr, dplyr, stringr, purrr, ...). The only exception is ggplot2: it was developed considerably before the discovery of the pipe. Unfortunately the next iteration of ggplot2, ggvis, which does use the pipe, isn't ready from prime time yet.
Most of the packages you'll learn through this book have been designed to work with the pipe (tidyr, dplyr, stringr, purrr, ...). The only exception is ggplot2: it was developed considerably before the discovery of the pipe. Unfortunately the next iteration of ggplot2, ggvis, which does use the pipe, isn't ready for prime time yet.
### Missing values