>RE::VISION CRM

R 데이터 분석

[R분석] barplot 집단별 색상 구분표시 with 레전드 legend

YONG_X 2016. 10. 12. 13:36


 age_diff.csv


ad <- read.csv("age_diff.csv")

ad$rcouples <- ad$rcouples * 100 / sum(ad$rcouples)


barplot(ad$rcouples, col=ifelse(as.numeric(row.names(ad)) <=4, "lightblue", ifelse(as.numeric(row.names(ad)) ==5, "purple2", "pink")), names.arg=ad$agediff, cex.axis=1.2, cex.names=1.2 )

legend( 7.5, 22 , pt.cex = 3

         , legend = c("", "")

         , inset = c(0,0.1) 

         , bty = "n"

         , pt.bg = c("lightblue","pink")

         , pch = c(22,22))

 legend( 7, 23.5 , cex = 1.2

         , legend = c("남성연상", "여성연상")

         , bty = "n" )






age_diff.csv
0.0MB

'R 데이터 분석' 카테고리의 다른 글

분석 데이터 준비 : Game Log 데이터  (0) 2017.01.30
# [R분석] KBO 2016 타자 :: 시각적 데이터 탐색 분석  (0) 2017.01.04
LGUP_BDAS _ 20161006  (0) 2016.10.06
heatmap using scatterplot  (0) 2016.08.22
[SCW.VEDAR] Part 2  (0) 2016.08.12