Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中使用以下内容从给定的数据集生成箱线图:
boxplot(set5, col=c(3,4), names=c("5 observation box plot"))
我还想在 Boxplot 上绘制特定点。目前,我只有四分位框生成的点,但没有显示实际的点。如何做到这一点?
你的意思是这样的吗?:
d<-rnorm(30) boxplot(d) points(rep(1,length(d)),d)