From 065b82edfa7f5b046888afefa3bd43fa8c5b6c80 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 14 Apr 2015 10:25:09 -0400 Subject: [PATCH] #29 add a note about manipulating with other dplyr verbs --- vignettes/introduction-to-tidyjson.Rmd | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vignettes/introduction-to-tidyjson.Rmd b/vignettes/introduction-to-tidyjson.Rmd index 793fa8b..b3f6222 100644 --- a/vignettes/introduction-to-tidyjson.Rmd +++ b/vignettes/introduction-to-tidyjson.Rmd @@ -465,7 +465,10 @@ relationally. Finally, don't forget that once you are done with your JSON tidying, you can use [dplyr](http://github.com/hadley/dplyr) to continue manipulating the -resulting data. +resulting data. `dplyr::filter`, `dplyr::arrange` and `dplyr::mutate` can be +used and will preserve the JSON attribute for further tidyjson manipulation. +The same is true for the `[` operator. Other `dplyr` functions will destroy +the JSON attribute, so you will no longer be able to manipulate the JSON data. ### World bank example