similar to: likert Package

Displaying 20 results from an estimated 1000 matches similar to: "likert Package"

2017 Aug 24
2
likert Package
R- Help Forum Working with the "likert" package and I can't figure out why my "bar" graphs are backwards (see attached). The percentages are place correctly but the bars are backwards. #Sample code # libraries library(likert) # create data band <- c("Band 3","Band 3","Band 3","Band 3","Band 3","Band
2012 Jun 02
1
Compare data between two groups/countries on 5-point Likert scale questionnare?
Hi everyone, I'm stuck on my dissertation which is due next week. I'm a business major student and my project is a comparative research on corporate social responsibility (CSR) between Chinese and German firms. According to my literature review, it's quite obvious that German firms have much better CSR initiatives and strategies than the Chinese ones and I wanted to test whether it was
2012 May 22
2
getting a Likert plot from a data frame
I'm creating a stacked bar chart using the likert command in the HH package. My data are in a data frame, with two numeric variables and a categorical variable, I can't get likert to use the column containing the categorical variable as a my y axis label. Here is a quick example: library(HH) #my data are:
2011 Jun 26
2
how to simulate Likert-type data using R
Dear R members Could someone tell me how to simulate Likert-type data using the rnorm function. Let's say, 200*15 random numbers in a variable that goes from 1 to 4 in steps of 1 (i.e., 1, 2, 3, 4) belonging to a normal distribution? random.data <— matrix(rnorm(200 * 15), nrow = 200, ncol = 15) random.data The result cannot be reached. could one help me revise the syntax?
2010 Apr 19
6
comparing attitudes of 2 groups / likert scales?
Hi, I have just found this forum, and it looks like a great place to get some help (I hope) For my dissertation, which is due way too soon, I am doing a survey, comparing attitudes of 2 independent groups, with 5 scale likert questions. Basically I want to show if they have similar or different attitudes. I am testing 4 hypotheses, and have in total about 20 questions. I have to say my
2010 Jun 03
2
Comparing a 4-point and 5-point Likert scale
Help with survey data: Hello R colleagues, I hope this is an appropriate place to direct this question. It relates specifically to the comparability of a 5-point likert to a 4- point likert scale. One question in my dataset asks "How much should be done to reduce the gap between rich and poor" Much more, somewhat more, about the same, somewhat less and much less. The second
2011 Aug 23
1
likert scale analysis with R
Dear colleagues, I would like to run a cluster analysis on a number of variables. They are Likert Scale (0 to 10), but they also have a "Don't know' option at the end of the scale. Apparently, with the 'Don't Know' option in place, they cannot be considered to be linear or ordinal. How can these variables be analysed using R? One option would be to use poLC and treat
2007 Aug 04
2
Invert Likert-Scale Values
Hi! I am using R to process some community survey data. Several item responses are recorded via a 7-point Likert-Scale. As I have coded the responses, 1 represents high agreement, and 7 high disagreement. This of course impacts the coefficients in a linear regression (of example agreement to self-perception measures on housing satisfaction). For some purposes, in order to make the coefficients
2018 Mar 06
0
couple of how-to-do it in R questions regarding corelations and mean and SD of likert items
Hi For first question, maybe I am completely wrong but cor(swiss[,-1], swiss[,1]) should give you what you want in one step. Second question Without an example it is hard to say but maybe aggregate is the way forward. > aggregate(iris[,1:4], list(iris$Species), function (x) c(mean=mean(x), sd=sd(x))) Group.1 Sepal.Length.mean Sepal.Length.sd Sepal.Width.mean Sepal.Width.sd 1
2012 Nov 09
2
Simple Likert count data visualization
Hello, Before I start to construct something inferior myself I would like to know if such a plot function is already out there. I have count data of a small survey with a few questions which use a scale from "Strongly disagree" to "Strongly agree" and similar things. What I would like to have for a slide is a plot which shows for each question a line over this scale and the
2013 Dec 20
3
error con install_github() del paquete devtools
Hola a todos. Estoy intentando instalar el paquete likert utilizando devtools y obtengo el siguiente error library(devtools) install_github('likert','jbryer') Installing github repo(s) likert/master from jbryer Downloading likert.zip from https://github.com/jbryer/likert/archive/master.zip Error en function (type, msg, asError = TRUE) : <not set> Me pasa también con
2018 Mar 06
5
couple of how-to-do it in R questions regarding corelations and mean and SD of likert items
Dear list, I have the following how-to-do it in R, questions. Suppose I have ten independent variables, and one dependent variable. I want to find the Pearson correlation of all the IVs with the DV, but not the correlation between the IVs. What I know so far, about R, that I have to type the cor () function ten times, each time requesting for a correlation between one IV and the DV. I was
2013 Dec 20
4
error con install_github() del paquete devtools
Si. Pero no funciona. En ordenador curro si funciona y tb tiene linux. Seguiré investigando has probado con: install_github('paquete",username='usuario')? 2013/12/20 Jose Luis Cañadas Reche <canadasreche@gmail.com>: > Hola a todos. > > Estoy intentando instalar el paquete likert utilizando devtools y obtengo el > siguiente error > > library(devtools) >
2013 Dec 21
2
error con install_github() del paquete devtools
Gracias Oscar. Funciona perfectamente. Ya investigaré más adelante porque no funciona install_github Saludos y feliza navidad.. El 20/12/13 23:05, Oscar Perpiñan escribió: > tmp <- paste0(tempdir(), '/likert.zip') > download.file('https://github.com/jbryer/likert/archive/master.zip', > destfile=tmp, method='wget') > unzip(tmp,
2023 May 03
1
[External] Error in percentage stacked barplot
Dear Richard,? Thank you very much for your reply. I went through the code and it worked. I was also able to change the colours.? I was wondering if I can change the legend position; instead of being in the bottom to be on the left side.? I tried the following but without any success strip = FALSE strip.right = TRUE likert(t(hellisheidi), ReferenceZero=.5, xlab="X-lab",
2002 Jul 12
2
'R' library for Rasch modelling?
I'm new to 'R', so forgive me if I've used the wrong term. I'd like to model some Likert-style items using Rasch methods. I've been unable to find mention of these for 'R'. Would someone happen to know of any? Thanks in any case. Bill ------------ "It is the time that you have wasted for your rose that makes your rose so important."--St-Exupery
2013 Apr 15
1
(no subject)
Hi, I'm trying to decide between doing a FA or PCA and would appreciate some pointers. I've got a questionnaire with latent items which the participants answered on a Likert scale, and all I want to do at this point is to explore the data and extract a number of factors/components. Would FA or PCA be most appropriate in this case? Cheers, Hannah -- View this message in context:
2009 Jun 09
2
is it possible to combine multiple barplots?
i am working with two sets of likert scale type (4 distinct values) data: dataA <- rep(1:4, c(3,2,2,4)) dataB <- rep(1:4, c(5,4,3,2)) i can now (bar)plot both of these separately and compare the distributions. plot(table(dataA), type='h') plot(table(dataB), type='h') is there a way to plot both of them in one plot, so that the bars for value "1" (dataA: 3,
2002 Jul 03
2
operating on a subset of a dataframe
Hi everyone, I've got a dataframe with columns of different types. A certain number of columns in the dataframe hold the results of a series of Likert-type items. I've got a function that will print a simple table of frequencies and I want to apply that function to those columns of the dataframe only. What's the best approach? -Tim -- Tim Wilson | Visit Sibley online: |
2009 Aug 28
3
CHAID in R
Hi..I am trying to run CHAID in R..I have installed the sofyware Party and trying to use the function ctree() to carry out the analysis. but I am getting the following message Error in terms.default(formula, data = data) : no terms component . I am having some Likert scale variable where I have variables like "Overall satisfaction"(Dependent Variable),"Product quality", Brand