View source: R/distribution_convertors.R
dlikert | R Documentation |
Likert density function
dlikert(x, prob, labels = names(prob))
x |
the likert distributed vector |
prob |
a vector of probabilities or counts; if named, the output is a factor |
labels |
a vector of values, defaults to names(prob) or 1:length(prob), if numeric, the output is numeric |
a vector of the densities
x <- 1:5
prob <- c(.1, .2, .4, .2, .1)
dlikert(x, prob)
x <- c("A", "C", "B", "B")
prob <- c(A = 10, B = 20, C = 30)
dlikert(x, prob)
# specify labels if prob not named and not 1:length(prob)
labels <- -2:2
x <- sample(labels, 10, replace = TRUE)
prob <- rep(1, length(labels)) # uniform probability
dlikert(x, prob, labels)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.