plikert: Likert distribution function

View source: R/distribution_convertors.R

plikertR Documentation

Likert distribution function

Description

Likert distribution function

Usage

plikert(q, prob, labels = names(prob))

Arguments

q

the vector of quantiles

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

Value

a vector of the densities

Examples

q <- 1:5
prob <- c(.1, .2, .4, .2, .1)
plikert(q, prob)

q <- c("A", "C", "B", "B")
prob <- c(A = 10, B = 20, C = 30)
plikert(q, prob)

# specify labels if prob not named and not 1:length(prob)
labels <- -2:2 
q <- labels
prob <- rep(1, length(labels)) # uniform probability
plikert(q, prob, labels)

faux documentation built on April 20, 2023, 9:13 a.m.