我正在对一些解释变量只能是 的数据使用回归模型1,2,3,4 and 5
。有5个解释变量和一个因变量。例如,
set.seed(2)
x1 <- sample(rep(1:5,2))
x2 <- sample(rep(1:5,2))
x3 <- sample(rep(1:5,2))
x4 <- sample(rep(1:5,2))
x5 <- sample(rep(1:5,2))
y <- runif(10,-1,1)
model <- lm(y~x1 + x2 + x3 + x4 + x5)
我想创建一个显示这些因变量和因变量之间关系的箱线图。我怎么能在 R 中做到这一点?
我设法使用@Ben 提供的代码创建了一个箱线图。但是,情节中有些地方我不明白。知道它们是干什么用的吗?这是情节