I have this bwplot made with the lattice package. Only thing is I want to enlarge the size of the "morning" and "midday" text on the y-axis (this is a 2-level factor called Period in the script). Any idea how to do this? My plot and script so far:
my_settings<- list(par.main.text = list(cex = 2, just = "left", x = grid::unit(5, "mm")), box.rectangle=list(lwd=2)) # change title position and size
#the plot
bwplot(dfmh2$Period~dfmh2$count^0.5|dfmh2$microhabitat, #count - morning/midday: midday more
par.settings = my_settings,
par.strip.text = list(cex =1.7),
ylab= list(label = "Period of Day", fontsize = 20), xlab= list(label = "Count (n)",
fontsize = 20),
main="A) Count")