Skip to content
Prev 247922 / 398503 Next

ANOVA plotting

Note that it is possible to do any Rcmdr "menu operation" from the command 
line simply by typing the command line output that results from doing the 
menu operation in Rcmdr.  Observe the red text in the output window.  The 
Rcmdr package supplies not only the Menu driven window, but some functions 
to accomplish the operations of the Window.  Observe the red text in the 
output window.

Assuming you want an "interaction plot" for 2-factor ANOVA and following on 
from Sarah's example paste the following code at the command line.  Note 
that it makes use of the Rcmdr convenience function plotMeans() so you need 
the Rcmdr package loaded:

  library(Rcmdr)
  fakedata <- runif(100)
  fakegroups <- sample(rep(letters[1:5], each=20))
  factor2 = sample(rep(letters[1:2], each=50))
  plotMeans(df$data, df$groups, df$factor2, error.bars="se")

For more information on how to use this function from the command line see 
its help file by typing
?plotMeans


Hope you can generalize this if you were actually asking a different 
question.  See posting guide for best practices on providing a reproducible 
example of what you want to accomplish.

Rob