How can I change size of y-axis text labels on a likert() object in R?

I’m working with the likert() library to generate nice looking diverging stacked bar charts in R. Most of the formatting has come together, but I can’t seem to find a way to shrink the text for the y-axis labels (e.g. "You and your family in the UK", "People in your local area…" etc.) which are… Read More How can I change size of y-axis text labels on a likert() object in R?

How to use a for-loop on column ranges for plotting without using all combination of i and j?

I am trying to print likert plots with a nested for-loop. Well, it works, but I would like the for function to not "retake" the i and j, which means I want to plot 1:5, 6:10, 11:15, and so on. But not all possible combinations of these variables. library(likert) for(i in c(1, 6, 11, 16)){… Read More How to use a for-loop on column ranges for plotting without using all combination of i and j?