skimr (version 1.0)

skim: Get useful summary statistic from a data frame

Description

skim handles data of all types, dispatching a different set of summary functions based on the types of columns in the data frame. It is an intentionally simple function. See skim_with and skim_format for how skim can be customized. 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.

Usage

skim(.data, ...)

Arguments

.data

A tbl, or an object that can be coerced into a tbl.

...

Additional options, normally used to list individual unquoted column names.

Value

A skim_df object, which can be treated like a tbl in most instances.

Examples

Run this code
# NOT RUN {
skim(iris)

# Skim also works groupwise
dplyr::group_by(iris) %>% skim()
# }

Run the code above in your browser using DataLab