Can I calculate z-score with R? [duplicate] August 16, 2021 by James Palmer if x is a vector with raw scores then scale(x) is a vector with standardized scores. Or manually: (x-mean(x))/sd(x) Related