我正在尝试在 for 循环中在 R 中绘制多个箱线图,但无法使用它引用数据集中的列,data.frame[column]
因为它返回以下内容:
Error in model.frame.default(formula = e[1] ~ e[2]) :
invalid type (list) for variable 'e[1]'
以下代码返回我得到的相同错误:
x <- rnorm(20)
y <- rnorm(20)
e <- data.frame(x, y)
boxplot(e[1] ~ e$y)
有什么建议么?我真的被困在这里了。