stats {skimr}R Documentation

Summary statistic functions

Description

Skimr provides extensions to a variety of functions with R's stats package to simplify creating summaries of data. All functions are vectorized and take a single argument. Other parameters for these functions are set in the skim_format() function.

Usage

n_missing(x)

n_complete(x)

sorted_count(x)

inline_hist(x)

n_empty(x)

min_char(x)

max_char(x)

n_unique(x)

ts_start(x)

ts_end(x)

inline_linegraph(x)

list_lengths_min(x)

list_lengths_median(x)

list_lengths_max(x)

list_min_length(x)

list_max_length(x)

Arguments

x

A vector

Functions

See Also

skim_format() and purrr::partial() for setting arguments of a skimmer function.


[Package skimr version 1.0.3 Index]