get_max_possible_total_score | R Documentation |
Calculate the maximum score of a set of items
get_max_possible_total_score(ip, resp = NULL)
ip |
An |
resp |
(optional) A response vector or a response matrix. The contents
are not important. The function only checks whether an element is missing
or not. If an element is missing, then that item will not count towards
the maximum possible score. If the maximum score of all items are needed,
set |
A vector of numbers showing the maximum possible scores.
Emre Gonulates
ip <- generate_ip(n = 10)
get_max_possible_total_score(ip)
# A mixture of dichotomous and polytomous items
ip <- generate_ip(model = c("3PL", "GRM", "3PL", "GRM", "GRM"),
n_categories = c(2, 5, 2, 4, 6))
# 1 + 4 + 1 + 3 + 5 = 14
get_max_possible_total_score(ip)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.