182 questions
Advice
1
vote
20
replies
168
views
coordinate proximity for likert scale analysis (php)
this is a project in php but i am happy with any suggestions, regardless of language. the coding is less the issue than a missing piece in logic i am struggling with.
users answer a series of 7-point ...
2
votes
1
answer
69
views
Likert-style plot with filter on rows
I have a large df from a survey. The first rows contain the variable name (v_XXX) the second row contains the question, here "How many days are you using the following means to get to work) and ...
2
votes
0
answers
59
views
"non-conformable arguments" error getting predict for polr model
I'm following this to get proportional odds regression for a likert scale but I'm getting this error when I try to use predict:
Error in X %*% object$coefficients : non-conformable arguments
This is ...
-5
votes
1
answer
127
views
Facet wrap in R for gglikert plot
i have a data frame in R with likert scale responses . Some questions are part of a broader theme. The partial data frame :
df
# A tibble: 264 × 3
Theme Question ...
-3
votes
1
answer
111
views
Specify the height of the bars in the gglikert function in R
I am creating g a Rmarkdown document that renders to pdf.
Inside this Rmarkdown document I have two chunks both of them simulated data frame and gglikert from here.
The first chunk has a plot with 6 ...
0
votes
1
answer
94
views
Sort of a likert plot based on the sorting of another likert plot in R
I have a data frame in R that I use to calculate percentages and present them in a likert plot plus a bar plot. In the middle I have a bar plot that has the percentages of the NA's in this data frame ...
1
vote
1
answer
65
views
plot-likert not printing labels for smaller values
I have the below code as per https://github.com/nmalkin/plot-likert/blob/release/docs/guide.ipynb
!pip install plot_likert
import plot_likert
import pandas as pd
import matplotlib.pyplot as plt
...
-3
votes
1
answer
95
views
Totals are not properly shown based on sorting of even number of likert levels in R using gglikert
I have a simulated data frame in R with 6 levels of likert.
When I have odd number of likert levels I can sort the plot based on the two upper or the two lower levels of likert and the totals that ...
2
votes
2
answers
190
views
Sort gglikert within facets rows the subplots
I have the same simulated data as shown in the GitHub page of the library, regarding the facet rows and cols (included in the reproducible example below).
But I want to sort each subplot based on the ...
0
votes
2
answers
232
views
Sort Likert levels based on combination of levels and horizontally matching the grouping facet rows with a bar plot in R [closed]
I have the same simulated data as described here.
I want to sort all the sublikert plots in each facet based on the sum of "Strongly disagree" and "Disagree".
Additionally how can ...
0
votes
1
answer
44
views
Flip the text in facet rows in gglikert in R
I have the same simulated data as described here with the difference of the group 2 has elements of big text. I want to flip horizontally the text in facet rows to but without disappearing the facet ...
2
votes
1
answer
71
views
Fine control over positioning of the Legend in a combined graph using ggplot
I'm pretty new to R and so far have successfully managed to solve all issues I encountered using a combination of stackoverflow, manuals, Google and ChatGPT. So before I start I have to say a big ...
2
votes
1
answer
83
views
Sort based on factor levels two plot in ggplot2
i have a data frame called df that contains likert data and a column var with 5 levels.
I want to sort both the likert and the bar plot based on a specific order.For example i want to sort them from ...
0
votes
1
answer
68
views
Sort likert plot based on the bar plot in R using ggplot2
i have a data frame in R called df :
# Load necessary libraries
library(tibble)
library(tidyverse)
library(ggplot2)
library(ggpubr)
library(ggstats)
# Define categories and Likert levels
var_levels &...
4
votes
1
answer
59
views
Different pattern in each discrete option in HH::likert function
I want to create a Likert plot using the HH package that incorporates visual patterns (e.g. hatching) in each bar category to improve accessibility for color-blind users.
Apparently, having grey-...