Questions tagged [likert]
141 questions
1
vote
1 answer
R - increase the font size of the numeric value in likert graph
I want to increase the font size of those percentage values inside the graph. For example, those 56%, 19%, 25%.
Current code I use
Q5 <- likert(tmp)
plot(Q5, ordered=FALSE) + theme(aspect.ratio=0.3, legend.text =element_text(color="black",size=8),…

LGDGODV
- 263
- 1
- 10
1
vote
2 answers
Melting and converting badly labeled likert Scale R
on my survey I made a mistake for a 5 point likert scale as follows:
dput(head(edu_data))
structure(list(Education.1. = structure(c(1L, 1L, 1L, 1L, 1L,
1L), .Label = c("", "Y"), class = "factor"), Education.2. = structure(c(1L,
1L, 1L, 1L, 1L,…

Daniel Ortiz
- 79
- 6
1
vote
2 answers
R: How to apply a command on selected variables in a data frame?
I need to use rescale some of ma variables from a 5 point to a 7 point likert scale. Therefore I want to use package surveytoolbox with command likert_convert. Also I want to create a vector i that names the variables names the command should be…

Boombardeiro
- 105
- 8
1
vote
2 answers
R: creating a likert scale barplot
I'm new to R and feeling a bit lost ... I'm working on a dataset which contains 7 point-likert-scale answers.
My data looks like this for example:
My goal is to create a barplot which displays the likert scale on the x-lab and frequency on…

Lorena
- 17
- 5
1
vote
3 answers
Move legend outside the plot to the left at the bottom (in R)
I used the likert and ggplot2 package to create this graph.
Now, I would like to move the legend at the bottom a little bit to the left, as the last part (Strongly Agree) is not shown in the graph.
Unfortunately, I could not find a solution so…

Steph
- 13
- 3
1
vote
1 answer
How do I get my Likert chart to go from diverging to converging?
Normally, I create my Likert charts using ggplot2, but I've created this chart here using the Likert package.
Is it possible to remove that center line so there are five separate bars instead of the middle section with two sides? I think in doing…
user12756615
1
vote
1 answer
Factor variable to Likert Scale - how to convert properly
I've collected the data on participation and identity. I used a web-survey (via Google Forms), and there are some problems with data conversion for my regression...
My variable where I used the Likert Scale (strongly disagree - 1, strongly agree -…

rg4s
- 811
- 5
- 22
1
vote
1 answer
LIkert plot labels on bars missing
I can't seem to get the % labels to plot on each of these bars when I group my data by factors in R. Any ideas? Thank you!
# Load libraries
library(ggplot2) # for plotting
library(likert) # for analyzing likert data
library(plyr) …

eduscholar
- 11
- 2
1
vote
2 answers
Algorithm to generate all possible populations for a 5-Likert Scale in R (cumulative frequency per level by 0.1)
I would like to generate all possible populations in a 5-likert scale which values are the cumulative frequency by 0.1 in each level), e.g.:
[1] [2] [3] [4] [5]
1 0 0 0 0
0 1 0 0 0
...
0 0 0 0 1
0.9 …
1
vote
1 answer
Create likert plot with two groups in R
I have issues trying to create a likert plot with two groups. I realized a survey in two communities. I now want to compare these two communities. [That's my data frame][1]. So far, I have loaded a sheet with 3 columns. One column refers to the…

Félix
- 13
- 4
1
vote
2 answers
Trying to find a way to combine IRT info plots from 3 different mirt models in R in the same
I am looking to combine all three" test information function" lines (one for each model) into one and the same graph. I have a data set of category 1-5 Likert responses in 400 rows in sets of 8 columns (one for each item). I have ran three IRT…

SteinR
- 23
- 4
1
vote
1 answer
Add percentage signs to horizontal scale in R likert plot
I am using the likert package in R to plot this graph:
The labels on the horizontal axis are incorrect. What is plotted are percentages.
How can I add a percentage sign to the positions indicated in the…

reggie
- 3,523
- 14
- 62
- 97
1
vote
1 answer
How to edit the position of value labels in plot.likert?
I have a dataframe of scores
scores <- data.frame(var1=c(1,3,5,6,1,4,10,2,5,3,7), var2=c(10,9,1,4,3,3,4,7,8,10,10))
which I transform into a factor with three levels as:
library(likert)
library(dplyr)
scores_factor <- scores %>% sapply(., cut,…

Yach
- 357
- 3
- 16
1
vote
1 answer
Add text to the right side of a Likert plot
I want to add text to right side of a likert plot.
I tried doing it with geom_text(), but I can't figure out how to load the right strings into the geom_text() function.
Here is a sample dataset:
library(likert)
data <- data.frame("bad carpet" =…

Thomas
- 23
- 4
1
vote
1 answer
Likert Plot legend names for response
I have developed a script to plot a Likert scale. The Script works properly and the plot is correct. I want to change the response label which would be,
"Strongly Disagree","Disagree","Slightly Disagree","Slightly Agree","Agree", "Strongly Agree"…

user11557166
- 11
- 4