search for: likert

Displaying 20 results from an estimated 71 matches for "likert".

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&quot...
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: df<-data.frame(as.character(cat=...
2013 Dec 21
2
error con install_github() del paquete devtools
Gracias Jorge. Pero tiene que ser otra cosa. El Renviron está bien y unzip está en ese path. Y al hacerlo como indica Oscar no hay problema con el unzip Miraré como está en otro Linux que si funciona a ver que puede ser. Pero será después de Navidad. Saludos [[alternative HTML version deleted]]
2013 Dec 20
4
error con install_github() del paquete devtools
...ro 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) > 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 f...
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)...
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. coul...
2013 Dec 22
0
error con install_github() del paquete devtools
A mi no me dio problemas. Intenta instalar nuevamente RCurl. > library(devtools) > install_github('likert','jbryer') Installing github repo likert/master from jbryer Downloading likert.zip from https://github.com/jbryer/likert/archive/master.zip Installing package from /tmp/RtmpJuHsLY/likert.zip arguments 'minimized' and 'invisible' are for Windows only Installing likert ...
2017 Aug 23
2
likert Package
R- Help Forum Working with the "likert" package and find that my "bar" graphs are backwards (see attached) > summary(results) Item low neutral high mean sd 4 Q4 5 15 80 2.75 0.5501196 5 Q5 20 40 40 2.20 0.7677719 1 Q1 65 30 5 1.40 0.5982430 3 Q3 5 90 5 2.00...
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 statistic skills are very basic and very rusty, we had some lectures two years ago, where we were introduced to R. I looked through my...
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
2012 Jun 02
1
Compare data between two groups/countries on 5-point Likert scale questionnare?
...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 true by sending out Likert-scale questionnaires to Chinese and German firms through bankers in my family. I have already got 24 responses from the Chinese and 27 from the Germans and it looked quite evident that the hypothesis is correct. Now that I am writing my analysis chapter, I am lost as I don't know which is the b...
2013 Dec 20
0
error con install_github() del paquete devtools
Hola, Puedes hacerlo sin devtools. Descargas el ZIP del repositorio, lo descomprimes, instalas el paquete que hay en CRAN para tener todas las dependencias instaladas y finalmente instalas el paquete en la versión de GitHub. tmp <- paste0(tempdir(), '/likert.zip') download.file('https://github.com/jbryer/likert/archive/master.zip', destfile=tmp, method='wget') unzip(tmp, exdir=tempdir()) ## instala versión de CRAN para conseguir todas las dependencias install.packages('likert') install.packages(paste0(tempdir()...
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 th...
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, exdir=tempdir()) > ## instala versión de CRAN para conseguir todas las dependencias > install.packages('likert') > in...
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 more accessible...
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 questions ask: "People who can afford to, should be able to pay for the...
2013 Dec 20
0
error con install_github() del paquete devtools
has probado con: install_github('paquete",username='usuario')? 2013/12/20 Jose Luis Cañadas Reche <canadasreche en gmail.com>: > 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 f...
2013 Dec 20
0
error con install_github() del paquete devtools
...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) > > install_github('likert','jbryer') > > Installing github repo(s) likert/master from jbryer > > Downloading likert.zip from > > https://github.com/jbryer/l...
2023 May 03
1
[External] Error in percentage stacked barplot
...ou 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", ylab="Y-lab", main="Stacked bar chart", col=c("#E94E1B", "#F7AA4E", "#BEBEBE", "#6193CE", "#00508C", "#E94E1B", "#BEBEBE"), legend.position="left&...
2018 Mar 06
5
couple of how-to-do it in R questions regarding corelations and mean and SD of likert items
...tion with the DV. Based on what I know, I?ll be typing cor (IV,,DV), ten times, and then typing the values in the table in MS Word. Secondly, I would like to create a table that provides the details of means and standard deviations, of multiple variables. The variables are ratings scores of likert type items. What I?d like to do is to construct a table, where each row has the question, its mean and standard deviation. I know that using the psych package, I can have the mean of each item in the scale, but, how to develop a table that has the item, mean, and SD on a same row? I do not know....