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