peruse: Peruse a Data Frame

Description Usage Arguments Examples

View source: R/peruse.R

Description

peruse examines the variables in a data frame and returns basic summary info about the individual variables. Different values will be returned for different types of columns so the function returns a data frame with the underlying data nested.

Usage

1

Arguments

data

a data frame

Examples

1
2
3
4
cars_summary <- peruse(mtcars)
numeric_info <- cars_summary %>%
  dplyr::filter(Class == "Numeric") %>%
  tidyr::unnest(data)

mattmills49/modeler documentation built on May 21, 2019, 1:25 p.m.