Learn R Programming

skimr (version 1.0)

skim_to_list: Print skim result and return a list of tibbles

Description

Returns a list of tibbles (also data frames) with one list element per data type. Each column contains the formatted values. This facilitates additional processing. Note that this is not pipeable.

Usage

skim_to_list(x, ...)

Arguments

x

A dataframe.

...

Further arguments passed to or from other methods.

Value

A list of tibbles.

Examples

Run this code
# NOT RUN {
  skim_to_list(iris)
  iris %>% skim_to_list()
  sl <- iris %>% skim_to_list() 
  sl[["numeric"]]
# }

Run the code above in your browser using DataLab