インターネット巡回生活

ほぼほぼ、書きなぐり雑記かも

boxplot

2016-09-01 | 日常
d <- c(rep(5,10000), rep(15, 1000), rep(25, 100), rep(35,10), rep(45,1))
hist(d, breaks=seq(0,50,10))

d01 <- cut(d,breaks=seq(0,50,10),labels=c("00点台","10点台","20点台","30点台","40点台"), right = FALSE, include.lowest = TRUE)
d02 <- table(d01)
boxplot(d02)



> cut(x,breaks=c(0,80,100), labels=c("不合格","合格"), right = FALSE, include.lowest = TRUE)
コメント    この記事についてブログを書く
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする
« Deepleaning | トップ | plot »
最新の画像もっと見る

コメントを投稿

日常」カテゴリの最新記事