Skip to content

Commit

Permalink
Merge pull request #336 from ropenscilabs/comma
Browse files Browse the repository at this point in the history
Missing comma
  • Loading branch information
elinw committed Jun 6, 2018
2 parents 51031fe + 7d3b399 commit f8d9d56
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
8 changes: 6 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
skimr 1.0.3 (2018-xx-xx)
skimr 1.0.3 (2018-06-06)
========================
### 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.
* 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.

skimr 1.0.2 (2018-04-04)
========================
Expand Down
2 changes: 1 addition & 1 deletion R/skim.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ globalVariables(".")
#' If the rendered examples show unencoded values such as `<U+2587>` you will
#' need to change your locale to allow proper rendering. Please review the
#' *Using Skimr* vignette for more information
#' (`vignette("Using_skimr" package = "skimr")`).
#' (`vignette("Using_skimr", package = "skimr")`).
#'
#' @param .data A tibble, or an object that can be coerced into a tibble.
#' @param ... Additional options, normally used to list individual unquoted
Expand Down
2 changes: 1 addition & 1 deletion man/skim.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion tests/testthat/test-skim_print.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ test_that("Skim prints a special header for vectors", {

test_that("Skim collapses counts and other multivalue stats into one cell", {
input <- skim(iris)
expect_output(print(skim, "set: 50, ver: 50, vir: 50, NA: 0"))
expect_output(print(input, "set: 50, ver: 50, vir: 50, NA: 0"))
})

Expand Down

0 comments on commit f8d9d56

Please sign in to comment.