You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
three common operations at the top of clean/tidy-data scripts are/could be:
deactivating sfcs (slows down functions so best to have default off for all data.frames
removing units (have to convert to numeric/integer before some functions can access or compare)
removing blobs (the odd time I'll get caught using View() on a data/frame with a blob column, which causes Rstudio to freeze).
ideally these would be done by using ps_env_map_df()
at the moment, ps_env_map_df(ps_deactivate_sfc()) is possible
I think ps_env_map_df(ps_deactivate_units()) and ps_env_map_df(ps_remove_blobs()) would be useful enough to have their own functions.
The text was updated successfully, but these errors were encountered:
three common operations at the top of clean/tidy-data scripts are/could be:
ideally these would be done by using
ps_env_map_df()
at the moment,
ps_env_map_df(ps_deactivate_sfc())
is possibleI think
ps_env_map_df(ps_deactivate_units())
andps_env_map_df(ps_remove_blobs())
would be useful enough to have their own functions.The text was updated successfully, but these errors were encountered: