Re: [R] likert Package

2017-08-23 Thread Richard M. Heiberger
## There is a bug in likert:::plot.likert. ## The centered argument is not handled correctly. ## In addition to centering, it also flips the order. ## Here it is: likert:::plot.likert(results, type = "bar", centered = TRUE, ## correct order group.order = c("Band 3", "Band

Re: [R] likert Package

2017-08-23 Thread Jeff Newmiller
Please don't start a new thread with the same question. My usual suggestion at this point would be for you to respond to the answers that have already been posted to your last question, but I think at this point that you need to correspond directly with the maintainer of the likert package. --

[R] likert Package

2017-08-23 Thread Jeff Reichman
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

Re: [R] likert Package

2017-08-23 Thread Richard M. Heiberger
most likely you have a factor with default levels which are not ordered the way you want them to be ordered. You can reorder the levels with the factor function. If you still need help after adjusting the order of the levels, then please send the data to the list by including the output of

Re: [R] likert Package

2017-08-23 Thread Uwe Ligges
If this is not docuemnted that way, write to the package maintainer. Best, Uwe Ligges On 23.08.2017 02:51, Jeff Reichman wrote: R- Help Forum Working with the "likert" package and find that my "bar" graphs are backwards (see attached) summary(results) Item low neutral

[R] likert Package

2017-08-22 Thread Jeff Reichman
R- Help Forum Working with the "likert" package and find that my "bar" graphs are backwards (see attached) > summary(results) Item low neutral high meansd 4 Q4 5 15 80 2.75 0.5501196 5 Q5 20 40 40 2.20 0.7677719 1 Q1 65 305 1.40 0.5982430 3