I am trying to plot a likert scale of a 1 - 7 scale for every country with the likert
package in R, but the R base plot()
function won't change any of the text sizes (or even add a main title).
I am generating the plot with:
p <- likert(summary = data )
plot(p,
plot.percents=FALSE,
plot.percent.low=FALSE,
plot.percent.high=FALSE,
include.center=TRUE,
plot.percent.neutral = FALSE,
col = c(brewer.pal(n = 7, name = "RdBu")),
cex.axis = 0.5,
cex.lab=0.5,
main = "title")
Which produces the following plot: Plot of Countries of the World
All the other plot parameters are working, so I'm not sure why the last 3, the most basic aren't working.