skimr icon indicating copy to clipboard operation
skimr copied to clipboard

Vignettes needed

Open elinw opened this issue 8 years ago • 9 comments

We could use some good vignettes of both simple and advanced use.

elinw avatar Jun 11 '17 18:06 elinw

A couple of vignettes are now in the develop branch, but they could definitely be expanded.

elinw avatar Sep 25 '17 13:09 elinw

For example we could use vignettes on how to use the individual functions or how to do printing (though that is a bit complex, it would be great for someone to start it off at least.) Don't feel you need to write everything.

elinw avatar Oct 13 '17 18:10 elinw

We need to update the vignettes with new features.

elinw avatar Dec 15 '17 19:12 elinw

We have good basic vignettes but it would be nice to add more extended examples of use cases. This might go into a third vignette if someone would like to create it.

elinw avatar Dec 18 '17 03:12 elinw

Add a vignette about working with skimr +dplyr.

elinw avatar Feb 13 '19 07:02 elinw

We're pretty good on the basics but could still use others addressing specific tasks that people do with skimr (such as make variable summary tables for papers).

elinw avatar Nov 09 '19 16:11 elinw

For the supporting additional objects vignette:

  1. There is no need to have an sfc_MulitX for each class. All the classes inherit sfc class and skimr is able to work fine with: skim_sf <- skim_with( sfc = sfl( n_unique = n_unique, valid = ~ sum(sf::st_is_valid(.)) ) )

  2. I think a function that is simple without being silly is:

get_crs <- function(column){ crs <- sf::st_crs(column)

paste0("epsg: ", crs[["epsg"]], " proj4string: '", crs[["proj4string"]], "'") }

I have an updated .Rmd, if you think think that will be helpful for the vignette.

kylebutts avatar Feb 26 '20 23:02 kylebutts

Thanks for the suggestion!

Please check the contribution guide and open a pull request. We can discuss particulars in the updated version of the Rmd.

michaelquinn32 avatar Mar 02 '20 04:03 michaelquinn32

I have opened a pull request @michaelquinn32! #575

kylebutts avatar Mar 02 '20 05:03 kylebutts