我想对boxplot.stats
数据的每个属性执行iris
,我不想使用for
循环。所以我的代码是:
apply(iris[, 1:4], 2, boxplot.stats)
效果很好。但是,我想设置do.conf = F
的参数boxplot.stat
。
我试过两种方法:
apply(iris[, 1:4], 2, boxplot(x, do.conf = F))
和
apply(iris[, 1:4], 2, boxplot(do.conf = F))
它们不起作用。返回错误:
**Error in boxplot(x, do.conf = F) : object 'x' not found**
我该怎么办?
答案 0 :(得分:1)
将其作为附加参数传递:
apply(iris[, 1:4], 2, boxplot.stats, do.conf = F)