Quantcast
Channel: グラフ - 廿TT
Viewing all articles
Browse latest Browse all 123

[R]度数分布表を作って折れ線グラフで比較する

$
0
0

f:id:abrahamcow:20150922060124p:plain

set.seed(1234)
X <- rnorm(100,1,1)
Y <- rnorm(100,3,1)
Z <- rnorm(100,2,0.5)
breaks <-seq(-5,7,by=1)
plot(table(cut(Z,breaks)),type="b",col="royalblue",ylab="frequency")
lines(table(cut(Y,breaks)),type="b",col="forestgreen")
lines(table(cut(X,breaks)),type="b",col="tomato")

エンジニアのための データ可視化[実践]入門 ~D3.jsによるWebの可視化 (Software Design plus)

エンジニアのための データ可視化[実践]入門 ~D3.jsによるWebの可視化 (Software Design plus)


Viewing all articles
Browse latest Browse all 123

Trending Articles