powered by
Create a report of a numeric vector.
# S3 method for numeric report(model, median = FALSE, dispersion = TRUE, range = TRUE, distribution = FALSE, missing_percentage = FALSE, ...)
Numeric vector.
Show mean and sd (default) or median and mad.
Show dispersion (sd or mad).
Show range.
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).
Show missings by number (default) or percentage.
Arguments passed to or from other methods.
report
# 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