Questions tagged [likert]

141 questions
0
votes
0 answers

Plotting Likert Data with the Likert Package - Returning Median instead of Mean

I'm trying to visualise likert type data with the likert package. The following code gives me the following plot: plot(likert(data_frame), type = "heat") In the likert heat map the second column (next to the item names) is called "Mean (SD)" and…
Torakoro
  • 162
  • 7
0
votes
2 answers

Show text box for comments if selecting anything lower than 3 on a likert 1-5 scale

I am trying to create a survey with a 1-5 scale option. I want to have javascript show a textbox for comments if a user selection a value of 1-3. Could anyone help me with the javascript code to do so? Here is my code:
  • Ekin
    • 3
    • 1
  • 0
    votes
    0 answers

    Investigate if scores of a Likert item actually differ from one onother?

    My dataset contains a Likert item containing how energetic the participants were at that moment rated from 0-6. Where 0 = not energetic at all and 6 = very energetic. I have to investigate if these scores actually differ from one another based on…
    0
    votes
    0 answers

    Using group.order of the likert package with a vector as a filter

    I have computed the likert results of my survey. They look like this: Item 1 2 3 4 5 1 [3][1] likert_scale 0.00000 14.28571 14.28571 57.14286 14.28571 2 [3][2] likert_scale 0.00000 0.00000 …
    Moritz Möller
    • 116
    • 1
    • 5
    0
    votes
    1 answer

    How to decide on the clustering method for categorical data in R?

    I'm trying to perform a cluster analysis on mixed data (demographics variables + Likert scales from 1 to 10 preferences). I am trying to apply hierarchical clustering with the function daisy() for mixed data, but when i compute the goodness of fit…
    0
    votes
    1 answer

    Data labels go on top of one another

    I use the custom panel function (found here) to display data labels on the graph. require(HH) # also loads: lattice, grid, latticeExtra # custom panel function myPanelFunc <- function(...){ panel.likert(...) vals <- list(...) DF <-…
    ZygD
    • 22,092
    • 39
    • 79
    • 102
    0
    votes
    1 answer

    A for loop for multiple likert graphs returns NOTHING

    I set up a large amount of likert and other graphs to evaluate the total results of my questionnaire. Now I would like to do the same thing by a grouping variable "group" I set up all of my likert items and their definitions (my data is in a…
    Gmichael
    • 526
    • 1
    • 5
    • 16
    0
    votes
    1 answer

    Colors rearranges x-axis in 'likert' - how do I avoid this?

    When i use the 'likert' package for plots, adding custom colors rearranges the options (x-axis). How do i avoid this? I can illustrate it with the example data: library(likert) library(tidyverse) data(pisaitems) items29 <-…
    Anders
    • 75
    • 1
    • 8
    0
    votes
    1 answer

    Remove NA's from a stacked bar chart created using likertplot function from the HH package

    I am creating stacked-bar-charts using the likertplot function from the HH package to display summary results from a recent student survey. The code I have used to produce this plot is: likertplot(Subgroup ~ . | Group, data = SOCIETIES_DATA, …
    0
    votes
    1 answer

    Changing 'likert' standard texts

    I don't know how to change the standard texts on plots created using the likert package. To make it easy, i will just provide the sample data, as the solution probably will be the same. library(likert) data(pisaitems) items28 <- pisaitems[,…
    Anders
    • 75
    • 1
    • 8
    0
    votes
    0 answers

    Likert Scale responses placed in separate columns in CSV

    I have survey data with the typical Likert scales. however, the responses choices are in separate columns in the CSV. Could someone help me join the answer choices in the same column? Question: In the past 30 days to what extent has childcare been a…
    Luis
    • 97
    • 2
    • 2
    • 10
    0
    votes
    0 answers

    How do I analyze a pre & post test survey with Likert scale items?

    A bit of context. 1). I know all respondents answers to a pre-and-post survey after an hour long training session was conducted. 2). I can also match all respondents pre and post answers. For example, I know respondent one's pre-survey answer to…
    0
    votes
    0 answers

    Why plot function in likert producing error?

    My data is: > dput(fb5) structure(list(Relevency = structure(c(5L, 4L, 5L, 5L, 5L, 4L, 5L, NA, 4L, 5L, 4L, 5L, 5L, 5L, 5L, 5L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 2L, 3L, 3L, 5L, 5L, 5L, 4L), .Label = c("1", "2", "3", "4", "5"), class =…
    Amirul Islam
    • 407
    • 1
    • 6
    • 15
    0
    votes
    0 answers

    Suppressing or removing factor levels to improve analysis using Likert package in R

    I am trying to analyze a moderate sized survey dataset using the "likert" package and is primarily comprised of Likert Scale questions (Strongly Agree to Strongly Disagree). The problem I am running into.:, there are a fair number of "NAs" and other…
    0
    votes
    0 answers

    R Likert Package: Increase the facet strip label text size

    I am using the likert package and followed this example. I wanted to use the grouping figure like they did. The group figure looks like this: I need to increase the font size of the facet strip labels (for example, "I read only if I have to"). How…
    1 2 3
    9
    10