Questions tagged [likert]

141 questions
2
votes
1 answer

Plotting Likert Scale in R

I am completely new to R and self taught - using for 5 days with help of YouTube videos. I want to plot Likert survey responses but struggling to work out or find how. There are eight questions with 561 responses on a 5 point scale. A ninth question…
Claire
  • 21
  • 2
2
votes
2 answers

Plot stacked bar chart of likert variables in R

lets say I have a data frame that looks like this: P Q1 Q2 ... 1 1 4 1 2 2 3 4 3 1 1 4 where the columns tell me which person answered which of the questions q1, q2, ... accordingly. Those questions require an answer…
manuel459
  • 173
  • 1
  • 10
2
votes
1 answer

Likert plot with neutrals held aside

I'm using the likert package to create plots of a questionnaire. I would like to create a plot like this, where neutral responses are held aside, do you know if there is a way to do it in R?
Gigi39
  • 45
  • 3
2
votes
1 answer

Overlaying percentages on top of individual bars in Likert

I want to add labels as percentages to the individual bars of my Likert chart. Is there an easy way to do this? I've tried using geom_text, adjusting ordering commands, and enabling "plot.percents = TRUE." None of these things seem to work. My code,…
user12756615
2
votes
1 answer

How do I output the correct percentages on each bar of my Likert chart?

I'm trying to get my code to output the percentage on top of each individual bar. Right now, the percentages shown below are on the wrong side. My code combines Labels 1 and 2 and Labels 3 and 4, and then outputs those numbers on the incorrect…
user12756615
2
votes
1 answer

Controlling the bar labels in a likert plot using HH package

I am a beginner in R and am using RStudio to create a likert graph with the percentages shown on the bars. Everything works fine, but none of the percentages of "most of the time" and "almost always" are in their right locations on the graph, unlike…
Z N
  • 21
  • 3
2
votes
2 answers

Likert style plot split out by levels within a factor

I want to create a Likert plot which looks like this: I have two columns in my dataframe - Age and Overall Satisfaction, both of which are factors. There is an uneven number of individuals in each age bracket. I want to produce a plot like the one…
André.B
  • 617
  • 8
  • 17
2
votes
1 answer

Likert plot 100 percent scale with Likert Package

I wanted to draw a likert plot with 100% scale (100) with equall plot size. I tried following code and give me following plot: plot(LIKPR3,centred=TRUE,plot.percents=TRUE, plot.percent.neutral = TRUE, text.size = 6, text.color =…
NoviceStat
  • 45
  • 5
2
votes
2 answers

Create Likert scale sort of graph using ggplot 2

I have a dataframe with below structure structure(list(Set = structure(c(1L, 1L, 1L, 2L, 2L, 2L), .Label = c("Set2", "Set1"), class = "factor"), Subset = c("Feminine", "Masculine", "Neutral", "Feminine", "Masculine", "Neutral"), Genderity =…
Vaibhav Singh
  • 1,159
  • 1
  • 10
  • 25
2
votes
0 answers

Required number of iterations for multiple imputation of missing data

How can I decide the required number of iterations for convergence and the number of imputations for multiple imputation with mice? I have longitudinal data with 8 likert items (ordinal variable) which I want to impute using the polr method in mice.…
2
votes
1 answer

Customize x axis tick marks in likert function from HH package

I would like to customize the x axis tick marks of the output from likert function of HH package in R. MWE from package manual: library(HH) data("ProfChal", package = "HH") likert(Question ~ . , data=ProfChal[EmpRows,], as.percent=TRUE, …
1
vote
0 answers

Likert Scale Plot in R, y axis labels and percentages of each bar is missing

Creating example data frame Item <- c("EO1_PS", "EO1_OS", "EO2_PS", "EO2_OS") SA <- c(0, 36, 0, 27 ) A <- c(0, 64, 0, 73) N <- c(0,0,0, 0) D <- c(0, 0, 0, 0) SD <- c(0, 0, 0, 0) NAP <- c(100, 0, 100, 0) df <- data.frame(Item, SA, A, N, D, SD,…
1
vote
1 answer

Removing Vertical Mean Line and changing transparency in likert.density.plot

Using likert.density.plot from library("likert"), I am attempting to make a density plot of likert data. The plot works, but I can't seem to change all the aspects of visualization I am expecting to. Particularly I would like to change: Fill…
User
  • 13
  • 3
1
vote
2 answers

How do I add percentages beside frequency values in a one-way frequency table?

I just recently started using R, and it's also my first time posting here (sorry if I miss a few details my question). I have a dataset that contains around 22 questions/statements that are in 5 pt. Likert-scale format. Each statement has a…
DavidQ
  • 13
  • 3
1
vote
0 answers

what to do next if it fails to check model assumptions?

I am conducting the ordinal regression model using the "clmm" function of the package "ordinal". As the tutorial said, we should use the "nominal_test" and "scale_test" in the "clm" function to check the assumption. Like the result of the example in…
Benita LI
  • 11
  • 1
1
2
3
9 10