Hi all,
I'm new to R so sorry for the possibly very simple question. I'm making a Likert scale plot in Posit Cloud
and I would like the vertical bar in the middle to sit between variable 2 and 3 not in the middle of 3?
this is my current code
#this creates the likert information from the data
likert(data)
Result = likert(data)
#this plots the data
plot(Result,
type="bar")+
scale_fill_manual(breaks = c("1", "2", "3", "4"),
values = c("dark grey", "grey", "light green", "green"))
and advice or where to find info would we awesome, thanks