colearendt / tidyjson

Tidy your JSON data in R with tidyjson
Other
182 stars 15 forks source link

Warn on gather functions on name conflict only if non-default name is specified #75

Open jeremystan opened 8 years ago

jeremystan commented 8 years ago

Should not throw a warning:

json %>% gather_array %>% gather_array

Should throw a warning:

json %>% gather_array("special") %>% gather_array("special")