python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Display grouped percentages in Likert plot with Plotly R
I have a dataframe like this:
library(tidyverse)
data <- tibble(Question_num = rep(c("Question_1", "Question_2"),each= 5),
Answer = rep(c('Strongly disagree',
...
Paola
Votes: 0
Answers: 1
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 ...
Jeremy Kidwell
Votes: 0
Answers: 1
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-...
Jeremy Kidwell
Votes: 0
Answers: 1
How can I recode likert scale survey responses so that I am consolidating like responses within the vector?
I have likert scale responses ranging from 1:7 where 8 is "don't know". I'd like to recode 1:3, 4, 5:7 as a new variable where instead of a vector with 8 different responses, I have a new va...
Jack Kessler
Votes: 0
Answers: 2