summary.transform | R Documentation |
print and summary method for "transform" class.
## S3 method for class 'transform'
summary(object, ...)
## S3 method for class 'transform'
print(x, ...)
object |
an object of class "transform", usually, a result of a call to transform(). |
... |
further arguments passed to or from other methods. |
x |
an object of class "transform",usually, a result of a call to transform(). |
summary.transform compares the distribution of data before and after data transformation.
transform
, plot.transform
.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.