Skimr Versions Save

A frictionless, pipeable approach to dealing with summary statistics

v1.0.6

4 years ago

v1.0.6-rc3

5 years ago

v1.0.6-rc2

5 years ago

v1.0.6-rc

5 years ago

1.0.3

5 years ago

NEW FEATURES

  • You can use skim_with() with a nest list of functions: skim_with(.list = mylist) or skim_with(!!!mylist)
  • More polished display of subtables in default printing.

BUG FIXES

  • Fix issue with conflict between knitr and skimr versions of kable() that occurred intermittently.
  • Do not skim a class when the skimmer list is empty for that class.
  • Fix a mistake in a test of skim_print for top counts.

v1.0.2

6 years ago

New CRAN release containing a number of bug fixes and improvements.

NEW FEATURES

  • You can create skimmers with the formula syntax from rlang: skim_with(iqr = ~IQR(.x, na.rm = TRUE)).

MAJOR CHANGES

  • The median label has been changed to p50 for consistency with the previous changes to p0 and p100.

MINOR IMPROVEMENTS

  • Impovements and corrections to to readme and other documentation.
  • New vignette showing defaults for skimmers and formats.
  • Vector output match data frame output more closely.
  • Add minimum required version for testhat.
  • Add minimum requred version for knitr.

BUG FIXES

  • You can use skim_with() to add and remove skimmers at the same time, i.e. skim_with(iqr = IQR, hist = NULL) works as expected.
  • Histograms work when Inf or -Inf are present.
  • Change seq( ) parameter to length.out to avoid problems with name matching.
  • Summary should not display a data frame name of "." (which occurs when piping begins with the data frame).

1.0.1

6 years ago

NEW FEATURES

  • Add support for spark plots on Windows

MAJOR CHANGES

  • spark_line() and spark_bar() are no longer exported
  • Default statistics for numeric changed from min(x) and max(x) to quantile(x, probs = 0) and quantile(x, probs = 1). These changes lead to more predictable behaviors when a column is all NA values.

MINOR IMPROVEMENTS

  • Add minimimum required version for stringr
  • Improve documentation in general, especially those related to fonts

BUG FIXES

  • Fix issue where a histogram for data with all NAs threw an error
  • Suppress progress bars from dplyr::do()