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 を生成しています。
boxplot(set5, col=c(3,4), names=c("5 observation box plot"))
また、Boxplot に特定の点をプロットしたいと考えています。現在、ポイントから生成された四分位ボックスしかありませんが、実際のポイントは表示されていません。これを達成する方法は?
次のような意味ですか?:
d<-rnorm(30) boxplot(d) points(rep(1,length(d)),d)