I want to add to ggplot (PLOT) graph a table reporting the significance of the analysis of variance:
aov2<-aov(Ce~O+H+O:H, data=df)
mytable<-summary(aov2)
I have tried:
PLOT+
mtext(mytable)
Error in mtext(mytable) : plot.new has not been called yet