我对方差分析进行了事后 Tukey 检验,然后绘制了结果图。我似乎无法更改 x 轴标题或 y 轴标题。我收到此错误:
Error in plot.default(c(xi[, "lwr"], xi[, "upr"]), rep.int(yvals, 2L), :
formal argument "xlab" matched by multiple actual arguments
Run Code Online (Sandbox Code Playgroud)
这是我的相关代码:
tuk <- TukeyHSD(final)
plot(tuk,xlab="Differences in mean departure times", ylab="Comparisons")
Run Code Online (Sandbox Code Playgroud)
我还需要更改 y 轴刻度线标签,但我不知道如何更改。
谢谢。