Nicholas Tierney
Nicholas Tierney
Can you provide a bit more context around the code that produces this error? Or is it linked in the issue above?
## Review checklist for @njtierney ### Conflict of interest - [ ] I confirm that I have read the [JOSS conflict of interest (COI) policy](https://github.com/openjournals/joss/blob/master/COI.md) and that: I have no...
Hi folks, have you got enough reviewers for this? I'm sorry this has slipped past me, if possible I think I might bow out of this review.
Just wanted to echo what @Aariq said - geotargets would be a nice place for this. @elipousson do you happen to have any examples on hand to demonstrate the use...
This sometimes captures NA values, it might be best to use something like: ```r map_dfr( data, class ) %>% pivot_longer( cols = everything(), names_to = "variable", values_to = "class" )...
Alright here we go: ``` r library(visdat) variable_first_value % dplyr::slice_head(n = 1) %>% tidyr::pivot_longer( cols = tidyselect::everything(), names_to = "variable", values_to = "first_value", values_transform = as.character ) } class_info %...
Could maybe change `first_value` to `typical_value` to use the first non_missing value...or something?
Haaaa this is what `dplyr::glimpse()` does. Ugh. I still maintain it is useful.
Thanks for doing this, this cleans up a lot of code, it looks really nice! :rocket:
Wow, thank you @olivroy !