Questions tagged [likert]
141 questions
0
votes
1 answer
right order in levels (Likert) with negative and positive values, but wrong color assignment
I have a four-point Likert scale that I would like to stack by an ordered color palette that I have made (likert_palette), but there is always one side that is not ordered. Are there anyone with a solution on how to get the darkest red on the utmost…

Octobanana
- 1
- 1
0
votes
1 answer
How to make diverging stacked bar chart with neutral held Aside (ggplot2)?
I'm currently working on reporting Likert item response analyses by using diverging stacked bar charts. Though I have found references to these type of charts, there is little code guidance on how to achieve one particular result using ggplot2:…
0
votes
1 answer
How do I fix likert() clipping of data labels
I'm working with likert() to generate plots of survey data. The plots are clipping display of percentage levels, as below:
This is more / less severe for other similar plots in the same data set (so it's just percentage symbols here, but clips into…

Jeremy Kidwell
- 210
- 1
- 11
0
votes
1 answer
How can I change size of y-axis text labels on a likert() object in R?
I'm working with the likert() library to generate nice looking diverging stacked bar charts in R. Most of the formatting has come together, but I can't seem to find a way to shrink the text for the y-axis labels (e.g. "You and your family in the…

Jeremy Kidwell
- 210
- 1
- 11
0
votes
1 answer
Likert package barplot is adding some groups to the plot twice, how can I remove them -- what am I doing wrong?
I am trying to plot the following Likert item:
structure(list(`Likelihood of attending more frequently` = structure(c(4L,
4L, 4L, 3L, 4L, 4L, 3L, 4L, 5L, 4L, 4L, 4L, 4L, 5L, 3L, 5L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 1L, 4L, 5L, 4L, 3L,…

Chris Bova
- 134
- 1
- 2
- 9
0
votes
2 answers
Plotting Likert-Scales: How to include questions from another dataframe and deal with two neutral values?
I am trying to automize plotting Likert scales from a large survey. I used the questions before as colnames, but this was not very handy, so I started to use codes and save the questions with the code in another data frame. But now I do not know how…

anike
- 59
- 5
0
votes
2 answers
How to use a for-loop on column ranges for plotting without using all combination of i and j?
I am trying to print likert plots with a nested for-loop. Well, it works, but I would like the for function to not "retake" the i and j, which means I want to plot 1:5, 6:10, 11:15, and so on. But not all possible combinations of these…

anike
- 59
- 5
0
votes
0 answers
Adding percentage labels to HH likert graph
I am wanting to add on a summary percentage for the total positive and total negative to graphs produced using the HH likert package (as shown in the example image). My data is already formatted as a percentage and the code I am using is as…

clarke19
- 15
- 3
0
votes
1 answer
Custom order of legend in ggplot2 so it doesn't match the order of the factor in the plot
I am trying to make custom likert style plot. I like the plot but I want to change the order of the legend while keeping the order of the plot.
Data:
df <- structure(list(Benefit = structure(c(1L, 1L, 2L, 2L, 3L, 3L,
3L, 4L, 4L, 4L, 5L, 5L, 5L,…

JeniFav
- 113
- 1
- 9
0
votes
3 answers
Is there an easy way to get the frequencies column wise?
I have a list of Likert values, the values range from 1 to 5. Each possible response may occur once, more than once or not at all per column. I have several columns and rows, each row corresponds to a participant, each column to a question. There is…

finntastic
- 13
- 3
0
votes
1 answer
How do I add images to a Likert scale?
I am new to both jsPsych and programming in general. I am trying to create a browser-based experiment that displays Likert scales on the user's screen, along with images. Specifically, I would like to measure people's opinions of different…

puzzleGuzzle
- 101
- 10
0
votes
1 answer
Custom color palette for plot_likert function from sjPlot
I can plot with following data using plot_likert function from sjPlot R package.
library(tidyverse)
df1 <-
data.frame(
matrix(
data = sample(x = c("Strongly Disagree", "Disagree", "Neutral", "Agree", "Strongly Agree"), size = 500, replace =…

MYaseen208
- 22,666
- 37
- 165
- 309
0
votes
1 answer
Plotting likert scales with plot_likert function from sjPlot
I have likert scale data in character format and want to plot it using plot_likert function from sjPlot R package.
df1 <-
data.frame(
matrix(
data = sample(x = c("Strongly Disagree", "Disagree", "Neutral", "Agree", "Strongly Agree"), size =…

MYaseen208
- 22,666
- 37
- 165
- 309
0
votes
2 answers
How to combine different Likert variables into one new variable in R?
I'm a beginner in R and have a question about combining different variables into one new variable.
My surv mey measures for example the construct working overtime by means of three variables (all measured on a 5-point Likert scale). These questions…

Anne
- 1
- 1
0
votes
1 answer
Changing likert() plot color
I'm trying to plot a heat table with the likert package. Following code can be reproduced:
library("likert")
data("pisaitems")
title <- "How often do you read these materials because you want to?"
items29 <- pisaitems[,substr(names(pisaitems), 1,5)…

Christopher
- 2,120
- 7
- 31
- 58