Releases: ropensci/skimr
Releases · ropensci/skimr
v1.0.6
v1.0.6-rc3: Update README
Update README.Rmd to make the hex show on a Twitter card.
v1.0.6-rc2
Merge pull request #435 from ropensci/develop Develop to master
v1.0.6-rc: Merge pull request #419 from ropensci/develop
Standing PR Develop to Master
skimr 1.0.3 (2018-06-06)
NEW FEATURES
- You can use skim_with() with a nest list of functions:
skim_with(.list = mylist)
orskim_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
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)
NEW FEATURES
- Add support for spark plots on Windows
MAJOR CHANGES
spark_line()
andspark_bar()
are no longer exported- Default statistics for numeric changed from
min(x)
andmax(x)
to
quantile(x, probs = 0)
andquantile(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
NA
s threw an error - Suppress progress bars from
dplyr::do()