You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering whether it was possible to change the yaxis and xaxis titles as is commonly done in ggplot2? Typically I would use something like ylab("Preferred title") to change what is currently "Sepal.Length". I know I can pass theme arguments by using theme =, but there doesn't seem to be aything related to changing things like titles.
Hi,
I was wondering whether it was possible to change the yaxis and xaxis titles as is commonly done in ggplot2? Typically I would use something like ylab("Preferred title") to change what is currently "Sepal.Length". I know I can pass theme arguments by using theme =, but there doesn't seem to be aything related to changing things like titles.
For instance, given:
library(tidyverse) library(dabestr)
figure = multi.group.mean %>% plot ( color.column = Species, tick.fontsize = 14, axes.title.fontsize = 14 )
multi.group.mean <- mean_diff(multi.group)
figure
How would I go about changing yaxis title in top pane, or even the axis text?
Cheers
The text was updated successfully, but these errors were encountered: