sus_score_df | R Documentation |
sus_score_df
calcultes SUS scores given responses arranded
in a data.frame or matrix.
sus_score_df(df)
df |
A data.frame or matrix of SUS scores. Each row should be a different record/observation. There should be 10 columns, each representing the response to a different SUS question. |
Returns a vector of SUS scores.
sus_score
, sus_to_percentile
,
sus_suaro
, gg_sus
df <- data.frame(
x1 = c(1,5), x2 = c(5,1), x3 = c(1,5), x4 = c(5,1),
x5 = c(1,5), x6 = c(5,1), x7 = c(1,5), x8 = c(5,1),
x9 = c(1,5), x10 = c(5,1)
)
sus_score_df(df)
rm(list = "df")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.