본문 바로가기

Test Code/R

[R] 히스토그램 Colors (rainbow, heat.colors, ...)

히스토그램에서 단색이 아닌 그라데이션형태의 색상을 표현할수 있습니다.



topo.colors

hist(

    data, 

    lwd=1, 

    col=topo.colors(15),

    xlim=c(-5,5),

    ylim=c(0,250),

    main="topo.colors",

    las=1

)

box()





 



cm.colors

hist(

    data, 

    lwd=1, 

    col=cm.colors(15),

    xlim=c(-5,5),

    ylim=c(0,250), 

    main="cm.colors",

    las=1

)

box()





 



heat.colors

hist(

    data, 

    lwd=1, 

    col=heat.colors(15),

    xlim=c(-5,5),

    ylim=c(0,250),

    main="heat.colors",

    las=1

)

box ()





 



rainbow

hist(

    data, 

    lwd=1, 

    col=rainbow(15),

    xlim=c(-5,5),

    ylim=c(0,250), 

    main="rainbow",

    las=1

)

box()





 



# terrain.colors

hist(

    data, 

    lwd=1, 

    col=terrain.colors(15),

    xlim=c(-5,5),

    ylim=c(0,250),

    main="terrain.colors",

    las=1

)

box()






 








'Test Code > R' 카테고리의 다른 글

[R] 분산분석 함수 (anova, aov, oneway.test)  (0) 2014.01.10
[R] 내장 데이터 셋 조회  (1) 2014.01.10
[R] ddply 그룹별로 Summary  (0) 2014.01.09
[R] abline 그리기  (0) 2014.01.09
[R] 그룹데이터 만들기  (0) 2014.01.09