Questions tagged [likert]

141 questions
1
vote
1 answer

How can I incorporate sampling weights into an analysis of Likert scale survey questions?

I am analysing survey data, whose questions are in the form of the Likert Scale. I used auxiliary census data to calculate weights for different age groups within my sample. I would now like to use these weights to correct my sample data and then…
1
vote
1 answer

How modify stacked bar chart in ggplot2 so it is diverging

My data (from a likert scale question) looks like this: head(dat) Consideration Importance2 Importance Percent Count 1 Aesthetic value 1 Not at all important 0.046875 3 2 Aesthetic value …
Fbj9506
  • 231
  • 3
  • 11
1
vote
2 answers

'likert' issue ; number of levels

I am new to R, and i am using the "likert" package to illustrate survey data. I have the following issue. When i plot a likert-scale where all options are used, (the dataset contains observations for each of the 4 categories) i have no problem. But…
Anders
  • 75
  • 1
  • 8
0
votes
2 answers

How do I change the order of x axis variables and add another layer of x axis labelling for before and after (in R)?

I have gone through and followed this guide on how to make stacked bar plots with percentages: Plot stacked bar chart of likert variables in R Issue 1: it has organised the bars alphabetically, not in the order I had them. Issue 2: I have Before and…
lisa
  • 5
  • 2
0
votes
1 answer

How to present variations in Likert scale with a circular plot?

I have recorded the answers, in the form of a Likert scale from 0 to 10, of ten subjects regarding a specific believe "before" and "after" a treatment. The answers, as well as the sex assigned at birth, have been stored in a df where column 1…
Lorenzo
  • 11
  • 1
0
votes
0 answers

Likert package - add a separate N/A column

I would like to make a diverging bar graph of likert responses and include a separate bar for N/A responses (like in the image) diverging bar chart with NA I have pre-summarised data (shown in table), which I have plotted without the NA column so…
hatbrac
  • 1
  • 1
0
votes
0 answers

Visualizing a Likert scale in R

df10_data <- df_na %>% select(Q10_1, Q10_2, Q10_3, Q10_4, Q10_5, Q10_6) df10_factor <- df10_d %>% mutate_all(str_trim)%>% mutate_if(is.character,as.factor) levels(df10_factor$Q10_1) <- c(levels(df10_factor$Q10_1), "Intend to use on my…
barn_soft
  • 1
  • 2
0
votes
1 answer

Likert Scale Plot in R, Graph is blank after running the codes

I would like to plot likert scale data with percentage on the horizontal axis and Items on the vertical axis. I also want to show the percentages in the middle of each bar. I have tried the following codes, however the graph is totally blank. It…
0
votes
0 answers

Stacked bar graph for a 11 point scoring system with percentage

Method 1 Method 2 Method 3 Method 3 Method 5 1 4 2 3 10 2 8 2 4 0 3 8 2 5 9 4 0 4 6 5 6 10 8 7 6 5 9 0 9 2 3 1 0 3 10 4 2 9 5 4 3 0 1 4 4 4 7 6 3 I am trying to plot a stacked bar graph with percentages for each…
hdcd19
  • 1
0
votes
1 answer

Why are the bars inverted on the x axis when using 100% stacked bar plots with grouping in the Likert package in R?

Grouped likert scale using Likert package in R, results in plot with reversed scale. I have series of likert variables (strongly disagree-strongly agree) and a grouping variable from a survey. I am using Likert package in R and everything goes well…
Mauro r
  • 15
  • 4
0
votes
0 answers

Repel / shadow text on ggplot2 likert() bar plot

I'm experimenting with labels on likert() plot bars. Having fiddled with possible tools like ggrepel() and with_shadow() from ggfx(), I can't seem to identify the specific name of the element that I want to act on. I'm aware that geom_text_repel()…
Jeremy Kidwell
  • 210
  • 1
  • 11
0
votes
1 answer

Alter plot of likert() to display individual summary values on bars rather than hi/low

I've developed a series of plots using likert() to display the results of survey questions. In general this works great, but for one particular question, the quantities against individual responses is significant, so the default behaviour of…
Jeremy Kidwell
  • 210
  • 1
  • 11
0
votes
1 answer

How can I create a stacked bar plot in ggplot() filled by one variable with bars separated by another variable?

I am creating a diverging bar plot based on code in this tutorial (https://rfortherestofus.com/2021/10/diverging-bar-chart/) and it all looks great, except that I want to compare by year (2021 vs. 2023). Here is an example of what I was able to…
Kiirsti Owen
  • 13
  • 1
  • 3
0
votes
0 answers

How do I make a neutral category to the side of a graph in a likert plot?

I'm making a Likert plot 5 questions with 7 answer options "Completely Agree", "Agree", "Somewhat Agree", "Neither Agree nor Disagree", "Somewhat Disagree", "Disagree", "Completely Disagree", and an additional "Don't Know/No Opinion" Option. I…
0
votes
0 answers

Adding counts to Likert bar plot

I am working with Likert scale survey data like Q4.1 Q4.2 Q4.3 Q4.4 Q4.5 Q4.6 Q4.7 Q4.8 1 3 4 3 4 3 3 2 3 2 3 2 2 5 2 2 5 5 3 2 3 1 4 3 2 5 4 4 4 4 3 5 1 1 …
beevis
  • 37
  • 3