Michael Quinn
                                            Michael Quinn
                                        
                                    Thanks! V2 complicates this a bit. To get a collection of skimmer functions for a type of data in your data frame, we rely on S3. The function `get_skimmers()` is...
Scientific notation appearing like that is a product of using floating point numbers. It's bigger than `skimr` or even `R`. http://www.lahey.com/float.htm I'll keep thinking about it, but I'm not sure...
This is something that comes up in the pillar release notes: https://www.tidyverse.org/blog/2018/03/pillar-1-2-1/ Small numbers can be meaningfully different. I believe that it's a mistake to round. ``` tiny [1] 1.000000e-310...
I think the option then is to open a pillar PR where you can control scientific notation. In base R, that would be something like `options(scipen=999)`. https://stat.ethz.ch/R-manual/R-devel/library/base/html/options.html There is a...
This might also help us solve #671
I think we can go a bit further. The most useful place for this would be in the summary, i.e. https://github.com/ropensci/skimr/blob/22dfec233021f0aba38c9f0bfc5cff62a946a3f9/R/summary.R#L12-L14 I think the implementation depends on how far we...
This is a little more than the current updates to the `summary()`, since we'll need to modify the skim object to store this information. I can get to it soon.
Could put this on the roadmap too. Right now, the issue is that we generate all of the summary components as skimr attributes, which we then extract in the summary...
I think the issue is primarily how we handle NA's in some of the summary stats that we include: count and hist. We could probably add some simple updates to...
Hi Arthur! I'm wording if if we somehow have a namespace clash. Can you please install the [reprex package](https://reprex.tidyverse.org/) and call the following: ``` reprex::reprex({ library(skimr) library(knitr) library(kableExtra) }) ```...