Normalize | R Documentation |
Convert data to Normal Scores with the same Mean and SD. This reshapes data to conform to a Normal Distribution. It is not converting to z-scores (i.e., it is not standardizing data)
Normalize(x)
x |
Data to be normalized. Should be vector of scores |
A numeric with the same Mean and SD as x, but without skew or kurtosis
This is a primative function. I have a long to do list. For example, it is not yet written to handle missing observations.
Thomas D. Fletcher t.d.fletcher05@gmail.com
Joreskog, K., Sorbom, D., du Toit, S., & du Toit, M. (2000). LISREL 8: New Statistical Features. SSI.
Snippets of code were borrowed and modified from: http://zoonek2.free.fr/UNIX/48_R/03.html
norm
summary(USJudgeRatings$CONT) plot(density(USJudgeRatings$CONT)) ContN <- Normalize(USJudgeRatings$CONT) summary(ContN) lines(density(ContN), col=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.