标签: r boxplot stripchart
我想使用Boxpot绘制一个包含超过30.000条记录的列。数据范围是多种多样的(从0到1500000)。我得到了这样的结果:
为什么它会显示箱线图?对我来说,它看起来像个条形图。如何显示箱线图(带中位数等)?
这里是我使用的代码:
png("time.png") boxplot(df$time, main="Box plot of session duration", ylab="seconds") dev.off()