SyntaxFix
Write A Post
Hire A Developer
Questions
if x is a vector with raw scores then scale(x) is a vector with standardized scores.
x
scale(x)
Or manually: (x-mean(x))/sd(x)
(x-mean(x))/sd(x)