Learn R Programming

report (version 0.1.0)

report.numeric: Numeric Vector Report

Description

Create a report of a numeric vector.

Usage

# S3 method for numeric
report(model, median = FALSE, dispersion = TRUE,
  range = TRUE, distribution = FALSE, missing_percentage = FALSE,
  ...)

Arguments

model

Numeric vector.

median

Show mean and sd (default) or median and mad.

dispersion

Show dispersion (sd or mad).

range

Show range.

distribution

Returns Kurtosis and Skewness in table, and tries to guess the distribution of the numeric variable by using an internal machine learning model (see find_distribution).

missing_percentage

Show missings by number (default) or percentage.

...

Arguments passed to or from other methods.

See Also

report

Examples

Run this code
# NOT RUN {
x <- rnorm(1000)
report(x)
report(x, median = TRUE, missing_percentage = TRUE, distribution=TRUE)
to_fulltext(report(x))
to_table(report(x))
to_fulltable(report(x))
# }

Run the code above in your browser using DataLab