Recent Releases of skimr
skimr - skimr 2.2.0
- Updated handling of spark graphs for Windows when UTF-8 is supported.
- Test modernization, thanks to @olivroy
- Updated documentation to use base pipe
- Updated to no longer import magrittr and import rlang .data
MINOR IMPROVEMENTS
- Fixed documentation links
- HTML
Published by elinw 7 months ago
skimr - skimr 2.1.5
Updated to work with newer version of {purrr}.
- HTML
Published by elinw about 3 years ago
skimr - v2.1.4
NEW FEATURES
- skim() used within a function now prints the data frame name.
we have improved the interaction between focus() and the print methods.
- columns selected in focus() are shown in the correct order
- some edge cases relating to empty skim types have been improved
- you can control the width rule line for the printed subtables with an
option:
skimr_table_header_width. The default is to use the console width, i.e. the value of thewidthoption.
we have improved performance when handling large data with many columns.
MINOR IMPROVEMENTS
- Replace the Suppporting Additional Objects vignette with Extending skimr. Remove sf from Suggests.
- Default support for
haven_labelledcolumns is now supported. These columns are summarized using skimmers for the underlying data, typically either numeric or character.
BUG FIXES
- A
skim_list(most commonly generated by thepartition()function) also inherits from alist
- HTML
Published by michaelquinn32 almost 4 years ago
skimr - Release candidate for skimr v2
This previews a major release that breaks backward compatibility.
- HTML
Published by elinw over 6 years ago
skimr - skimr 1.0.3 (2018-06-06)
NEW FEATURES
- You can use skimwith() with a nest list of functions:
`skimwith(.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.
- HTML
Published by elinw over 7 years ago
skimr - 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).
- HTML
Published by elinw almost 8 years ago
skimr - 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)toquantile(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
NAs threw an error - Suppress progress bars from
dplyr::do()
- HTML
Published by elinw about 8 years ago