Skip to content
Prev 396440 / 398498 Next

plot(aov, which=1) with different labels?

On 2024-06-20 2:01 a.m., DynV Montrealer wrote:
Plotting an aov object is done by stats:::plot.lm.  From the help page 
?plot.lm, I think the value that you want to change is the "caption" 
argument, i.e.


  plot(my_aov, which=1, ann=FALSE,
        caption = "R?sidus vs Valeurs pr?dites")
  title(xlab="Valeurs pr?dites", ylab="R?sidus", main="Mon titre")

You can use `caption = NA` to suppress it.

Duncan Murdoch