I\'ve created some charts using the Likert package, however when I create plots by groups the plot.percents = TRUE won\'t give me the labels for each response category. The
Hey I tried it out and it doesn't work for me either using the grouping data. There is no mention of why despite plot.percent.low
and plot.percent.high
working fine. Unless someone else cracks it all I can do is offer a workaround using plot()
instead of likert.bar.plot
and text()
Here I label the Agree
category only for all three groups.
plot(likert.df.group, type="bar")
text(c(0.35,0.35,0.35), c(0.85,0.6,0.25),
labels = paste0(c(42.8,28.57,42.85),"%") )