Skip to content

Releases: ropensci/skimr

v1.0.6

27 May 08:20
7f726d4
Compare
Choose a tag to compare
Fix link in badge.  Also small correction to news.

Fix link in badge.  Also small correction to news.

v1.0.6-rc3: Update README

10 Apr 11:44
c7ea700
Compare
Choose a tag to compare
Pre-release
Update README.Rmd to make the hex show on a Twitter card.

v1.0.6-rc2

02 Apr 09:02
dd88f28
Compare
Choose a tag to compare
v1.0.6-rc2 Pre-release
Pre-release
Merge pull request #435 from ropensci/develop

Develop to master

v1.0.6-rc: Merge pull request #419 from ropensci/develop

01 Apr 12:49
9bdca0f
Compare
Choose a tag to compare
Standing PR Develop to Master

skimr 1.0.3 (2018-06-06)

07 Jun 20:04
f8d9d56
Compare
Choose a tag to compare

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

10 Apr 20:47
06171ec
Compare
Choose a tag to compare

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).

skimr 1.0.1 (2018-01-09)

10 Jan 03:42
ee10b78
Compare
Choose a tag to compare

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()