├── .Rbuildignore ├── .devcontainer └── devcontainer.json ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── dependabot.yml └── workflows │ ├── R-CMD-check.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── .pre-commit-config.yaml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── deprecated.R ├── dplyr.R ├── get_skimmers.R ├── package.R ├── reshape.R ├── sfl.R ├── skim.R ├── skim_obj.R ├── skim_print.R ├── skim_with.R ├── skimr-package.R ├── stats.R ├── summary.R ├── utils.R └── vctrs.R ├── README.Rmd ├── README.md ├── codemeta.json ├── cran-comments.md ├── inst ├── figures │ └── skimmer_hex.png ├── other_docs │ ├── blog.Rmd │ ├── blog.html │ ├── blog.md │ ├── blog_v2.Rmd │ ├── blog_v2.html │ ├── blog_v2.md │ └── skimr_in_jupyter.ipynb └── rmarkdown │ └── templates │ └── fonts-in-skimr │ ├── skeleton │ └── skeleton.Rmd │ └── template.yaml ├── man ├── deprecated-v1.Rd ├── figures │ └── logo.png ├── fix_windows_histograms.Rd ├── focus.Rd ├── get_default_skimmers.Rd ├── get_skimmers.Rd ├── knit_print.Rd ├── mutate.skim_df.Rd ├── partition.Rd ├── print.Rd ├── repr.Rd ├── sfl.Rd ├── skim-attr.Rd ├── skim-obj.Rd ├── skim.Rd ├── skim_with.Rd ├── skimr-package.Rd ├── skimr-vctrs.Rd ├── stats.Rd ├── summary.skim_df.Rd └── to_long.Rd ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── data.sqlite ├── failures.md └── problems.md ├── skimr.Rproj ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── data-table.md │ ├── dplyr.md │ ├── skim_print.md │ ├── skim_tee.md │ └── summary.md │ ├── helper-expectations.R │ ├── test-data-table.R │ ├── test-dplyr.R │ ├── test-get_skimmers.R │ ├── test-reshape.R │ ├── test-sfl.R │ ├── test-skim.R │ ├── test-skim_obj.R │ ├── test-skim_print.R │ ├── test-skim_tee.R │ ├── test-skim_with.R │ ├── test-stats.R │ ├── test-summary.R │ └── test-vctrs.R └── vignettes ├── Skimr_defaults.Rmd ├── Using_fonts.Rmd ├── extending_skimr.Rmd └── using_skimr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.lintr -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/dplyr.R -------------------------------------------------------------------------------- /R/get_skimmers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/get_skimmers.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | #' @aliases skimr-package 3 | "_PACKAGE" 4 | -------------------------------------------------------------------------------- /R/reshape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/reshape.R -------------------------------------------------------------------------------- /R/sfl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/sfl.R -------------------------------------------------------------------------------- /R/skim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/skim.R -------------------------------------------------------------------------------- /R/skim_obj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/skim_obj.R -------------------------------------------------------------------------------- /R/skim_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/skim_print.R -------------------------------------------------------------------------------- /R/skim_with.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/skim_with.R -------------------------------------------------------------------------------- /R/skimr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/skimr-package.R -------------------------------------------------------------------------------- /R/stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/stats.R -------------------------------------------------------------------------------- /R/summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/summary.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/vctrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/R/vctrs.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/figures/skimmer_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/figures/skimmer_hex.png -------------------------------------------------------------------------------- /inst/other_docs/blog.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog.Rmd -------------------------------------------------------------------------------- /inst/other_docs/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog.html -------------------------------------------------------------------------------- /inst/other_docs/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog.md -------------------------------------------------------------------------------- /inst/other_docs/blog_v2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog_v2.Rmd -------------------------------------------------------------------------------- /inst/other_docs/blog_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog_v2.html -------------------------------------------------------------------------------- /inst/other_docs/blog_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/blog_v2.md -------------------------------------------------------------------------------- /inst/other_docs/skimr_in_jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/other_docs/skimr_in_jupyter.ipynb -------------------------------------------------------------------------------- /inst/rmarkdown/templates/fonts-in-skimr/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/rmarkdown/templates/fonts-in-skimr/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/fonts-in-skimr/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/inst/rmarkdown/templates/fonts-in-skimr/template.yaml -------------------------------------------------------------------------------- /man/deprecated-v1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/deprecated-v1.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/fix_windows_histograms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/fix_windows_histograms.Rd -------------------------------------------------------------------------------- /man/focus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/focus.Rd -------------------------------------------------------------------------------- /man/get_default_skimmers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/get_default_skimmers.Rd -------------------------------------------------------------------------------- /man/get_skimmers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/get_skimmers.Rd -------------------------------------------------------------------------------- /man/knit_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/knit_print.Rd -------------------------------------------------------------------------------- /man/mutate.skim_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/mutate.skim_df.Rd -------------------------------------------------------------------------------- /man/partition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/partition.Rd -------------------------------------------------------------------------------- /man/print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/print.Rd -------------------------------------------------------------------------------- /man/repr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/repr.Rd -------------------------------------------------------------------------------- /man/sfl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/sfl.Rd -------------------------------------------------------------------------------- /man/skim-attr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skim-attr.Rd -------------------------------------------------------------------------------- /man/skim-obj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skim-obj.Rd -------------------------------------------------------------------------------- /man/skim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skim.Rd -------------------------------------------------------------------------------- /man/skim_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skim_with.Rd -------------------------------------------------------------------------------- /man/skimr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skimr-package.Rd -------------------------------------------------------------------------------- /man/skimr-vctrs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/skimr-vctrs.Rd -------------------------------------------------------------------------------- /man/stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/stats.Rd -------------------------------------------------------------------------------- /man/summary.skim_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/summary.skim_df.Rd -------------------------------------------------------------------------------- /man/to_long.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/man/to_long.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/revdep/data.sqlite -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /skimr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/skimr.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/data-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/_snaps/data-table.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/dplyr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/_snaps/dplyr.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/skim_print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/_snaps/skim_print.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/skim_tee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/_snaps/skim_tee.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/_snaps/summary.md -------------------------------------------------------------------------------- /tests/testthat/helper-expectations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/helper-expectations.R -------------------------------------------------------------------------------- /tests/testthat/test-data-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-data-table.R -------------------------------------------------------------------------------- /tests/testthat/test-dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-dplyr.R -------------------------------------------------------------------------------- /tests/testthat/test-get_skimmers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-get_skimmers.R -------------------------------------------------------------------------------- /tests/testthat/test-reshape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-reshape.R -------------------------------------------------------------------------------- /tests/testthat/test-sfl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-sfl.R -------------------------------------------------------------------------------- /tests/testthat/test-skim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-skim.R -------------------------------------------------------------------------------- /tests/testthat/test-skim_obj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-skim_obj.R -------------------------------------------------------------------------------- /tests/testthat/test-skim_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-skim_print.R -------------------------------------------------------------------------------- /tests/testthat/test-skim_tee.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-skim_tee.R -------------------------------------------------------------------------------- /tests/testthat/test-skim_with.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-skim_with.R -------------------------------------------------------------------------------- /tests/testthat/test-stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-stats.R -------------------------------------------------------------------------------- /tests/testthat/test-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-summary.R -------------------------------------------------------------------------------- /tests/testthat/test-vctrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/tests/testthat/test-vctrs.R -------------------------------------------------------------------------------- /vignettes/Skimr_defaults.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/vignettes/Skimr_defaults.Rmd -------------------------------------------------------------------------------- /vignettes/Using_fonts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/vignettes/Using_fonts.Rmd -------------------------------------------------------------------------------- /vignettes/extending_skimr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/vignettes/extending_skimr.Rmd -------------------------------------------------------------------------------- /vignettes/using_skimr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/skimr/HEAD/vignettes/using_skimr.Rmd --------------------------------------------------------------------------------