normalize_score | R Documentation |
Use computed FrequencyTable
or ScoreTable
to normalize the
provided raw scores.
normalize_score(x, table, what)
x |
vector of raw scores to normalize |
table |
|
what |
the values to get. One of either:
|
Numeric vector with values specified in what
argument
Other score-normalization functions:
normalize_scores_df()
,
normalize_scores_grouped()
,
normalize_scores_scoring()
# normalize with FrequencyTable suppressMessages( ft <- FrequencyTable(HEXACO_60$HEX_H) ) normalize_score(HEXACO_60$HEX_H[1:5], ft, what = "Z") # normalize with ScoreTable st <- ScoreTable(ft, list(STEN, STANINE)) normalize_score(HEXACO_60$HEX_H[1:5], st, what = "sten") normalize_score(HEXACO_60$HEX_H[1:5], st, what = "stanine")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.