dlookr (version 0.4.5)

summary.transform: Summarizing transformation information

Description

print and summary method for "transform" class.

Usage

# S3 method for transform
summary(object, ...)

Arguments

object

an object of class "transform", usually, a result of a call to transform().

...

further arguments passed to or from other methods.

Details

summary.transform compares the distribution of data before and after data transformation.

See Also

transform, plot.transform.

Examples

Run this code
# NOT RUN {
# Standardization ------------------------------
creatinine_minmax <- transform(heartfailure$creatinine, method = "minmax")
creatinine_minmax
summary(creatinine_minmax)

# plot(creatinine_minmax)

# Resolving Skewness  --------------------------
creatinine_log <- transform(heartfailure$creatinine, method = "log")
creatinine_log
summary(creatinine_log)

# plot(creatinine_log)

# plot(creatinine_log, typographic = FALSE)

# }

Run the code above in your browser using DataLab