# YONG's own color chart
coldf <- data.frame(colnum = c(12, 23, 30, 36, 40, 41, 51, 56, 67, 71, 72, 73, 74, 79, 93, 100))
coldf$colname <- colors()[coldf$colnum]
colrgbdf<- as.data.frame(t(col2rgb(coldf$colname)))
coldf <- cbind(coldf, colrgbdf)
# par_back <- par()
# to make enough space to show color names
par(mar=c(7,4,3,2))
plot(coldf$colnum, pch=15, col=rgb(coldf$red,coldf$green,coldf$blue, maxColorValue=255), cex=3, main="my own color chart", xlab="", xaxt='n')
axis(1, at=c(1:nrow(coldf)), labels=coldf$colname, tck=-0.01, las=2)
text(coldf$colnum, labels=coldf$colnum, pos=2)
# get back to the default margin specification
par(par_back)
'R 데이터 분석' 카테고리의 다른 글
ANN Example (0) | 2015.08.13 |
---|---|
R d3netwrok sample using randomForest proximity of mtcars (0) | 2015.08.05 |
0720 클러스터링 군집화 연습 (0) | 2015.07.20 |
경기대빅파이 5주 계획 6주 계획 (0) | 2015.07.20 |
0714 복습 :: 연관성분석과 군집화 (0) | 2015.07.20 |