Using this page as a reference http://jason.bryer.org/likert/ I am finding that when I replicate Bryers code with my own data the likert factor levels are in the wrong order. This doesn't seem to happen with the demo code but does with mine.
I plot with
plot(lexam, centered = FALSE, wrap = 30)
to get the image you see
I tried to amend with the following without success.
levels <- c("Strongly Agree", "Agree", "Neutral", "Disagree","Strongly Disagree")
lexam[] <- lapply(lexam, function(x) factor(x, levels = levels))
Can anybody suggest what I can do to re-order the factor levels for the plot? You should see in the linked image where the problem is. Incorrect Likert Ordering
Interestingly I've seen the same problem in other posts where it's not actually the problem being discussed. For example Plot Percents with Likert Package - Doesn`t work when grouping you can see the same issue even though it's not the topic of discussion.