Stackoverflowのコメントを読むと、z-scoreはPythonまたはPerlで計算されている可能性がありますが、Rにはまだ遭遇しませんでした。見逃しましたか? ?
As( http://en.wikipedia.org/wiki/Standard_score 。)
z-score = (x-μ)/σ
x is a raw score to be standardized;
μ is the mean of the population;
σ is the standard deviation of the population.
このために設計されたRパッケージがあると思いますか?どこで見つけることができますか?または正規化のための同様のパッケージ?
x
が生のスコアをもつベクトルの場合、scale(x)
は標準化されたスコアをもつベクトルです。
または手動で:(x-mean(x))/sd(x)