The latent2likert package is designed to effectively simulate the discretization process inherent to Likert scales while minimizing distortion. It converts continuous latent variables into ordinal categories to generate Likert scale item responses. This is particularly useful for accurately modeling and analyzing survey data that use Likert scales, especially when applying statistical techniques that require metric data.
You can install the released version from CRAN:
install.packages("latent2likert")
Or the latest development version from GitHub:
devtools::install_github("markolalovic/latent2likert")
To keep the package lightweight, latent2likert only imports mvtnorm, along with the standard R packages stats and graphics, which are typically included in R releases. An additional suggested dependency is the package sn, which is required only for generating random responses from correlated Likert items based on a multivariate skew normal distribution. The package prompts the user to install this dependency during interactive sessions if needed.
rlikert
: Generates random responses to Likert scale questions based on specified means and standard deviations of latent variables, with optional settings for skewness and correlations.estimate_params
: Estimates latent parameters from existing survey data.
Overview of inputs and outputs.
You can use the rlikert
function to simulate Likert item responses.
To generate a sample of random responses to one item on a 5-point Likert scale, use:
library(latent2likert)
rlikert(size = 10, n_items = 1, n_levels = 5)
#> [1] 1 3 3 3 2 4 1 3 3 1
To generate responses to multiple items with specified parameters:
rlikert(size = 10,
n_items = 3,
n_levels = c(4, 5, 6),
mean = c(0, -1, 0),
sd = c(0.8, 1, 1),
corr = 0.5)
#> Y1 Y2 Y3
#> [1,] 2 1 3
#> [2,] 2 2 2
#> [3,] 4 3 2
#> [4,] 3 3 4
#> [5,] 4 5 6
#> [6,] 2 1 4
#> [7,] 1 2 3
#> [8,] 3 1 6
#> [9,] 3 3 4
#> [10,] 3 2 6
You can also provide a correlation matrix:
corr <- matrix(c(1.00, -0.63, -0.39,
-0.63, 1.00, 0.41,
-0.39, 0.41, 1.00), nrow=3)
data <- rlikert(size = 10^3,
n_items = 3,
n_levels = c(4, 5, 6),
mean = c(0, -1, 0),
sd = c(0.8, 1, 1),
corr = corr)
Note that the correlations among the Likert response variables are only estimates of the actual correlations between the latent variables, and these estimates are typically lower:
cor(data)
#> Y1 Y2 Y3
#> Y1 1.0000000 -0.5774145 -0.3838274
#> Y2 -0.5774145 1.0000000 0.3856997
#> Y3 -0.3838274 0.3856997 1.0000000
Given the data, you can estimate the values of latent parameters using:
estimate_params(data, n_levels = c(4, 5, 6), skew = 0)
#> items
#> estimates Y1 Y2 Y3
#> mean -0.0526979746 -0.9696916596 -0.0009229545
#> sd 0.8163184862 1.0533629380 1.0381389630
To visualize the transformation, you can use plot_likert_transform()
.
It plots the densities of latent variables in the first row and
transformed discrete probability distributions below:
plot_likert_transform(n_items = 3,
n_levels = 5,
mean = c(0, -1, 0),
sd = c(0.8, 1, 1),
skew = c(0, 0, 0.5))
Transformation of latent variables to Likert response variables.
Note that, depending on the value of the skewness parameter, the normal latent distribution is used if skew = 0, otherwise the skew normal distribution is used. The value of skewness is restricted to the range -0.95 to 0.95, that is
skew >= -0.95
andskew <= 0.95
.
- For more detailed information and practical examples, please refer to the package vignette.
- The implemented algorithms are described in the functions reference.
Alternatively, you can simulate Likert item responses using the
draw_likert
function from the
fabricatr package. This
function recodes a latent variable into a Likert response variable by
specifying intervals that subdivide the continuous range. The
latent2likert package, however, offers an advantage by automatically
calculating optimal intervals that minimize distortion between the
latent variable and the Likert response variable for both normal and
skew normal latent distributions, eliminating the need to manually
specify the intervals.
There are also several alternative approaches that do not rely on latent
distributions. One method involves directly defining a discrete
probability distribution and sampling from it using the sample
function in R or the likert
function from the
wakefield package.
Another approach is to specify the means, standard deviations, and
correlations among Likert response variables. For this, you can use
LikertMakeR or
SimCorMultRes to
generate correlated multinomial responses.
Additionally, you can define a data generating process. For those familiar with item response theory, the mirt package allows users to specify discrimination and difficulty parameters for each response category.