library(ggplot2) library(reshape2) 年間収入階級<-c("200万円未満","200~250", "250~300","300~350","350~400","400~450","450~500","500~550","550~600","600~650","650~700","700~750","750~800","800~900","900~1000","1000~1250","1250~1500","1500万円以上") No<-c(1:18) 全国<-c(35,85, 115,167,241,277,298,317,281,282,248,233,220, 352,240,327,141,104) 大都市<-c(8,17,25,40,59,71,85,92,89,71,71,78,68,113,76,115,45,41) 中都市<-c(18,49,62,88,138,147,161,162,136,155,126,117,115,185, 125,164,70,49) 小都市町村<-c(10, 18, 27, 39, 44, 60, 53, 63, 56, 56, 52, 38, 37, 54, 40, 49, 27, 13) 全国割合<-round((全国/3963)*100,2) 大都市割合<-round((大都市/1161)*100,2) 中都市割合<-round((中都市/2068)*100,2) 小都市町村割合<-round((小都市町村/734)*100,2) 年間収入階級別1世帯当たり1か月間の収入と支出<-data.frame(No,年間収入階級,全国,大都市,中都市,小都市町村,全国割合,大都市割合,中都市割合,小都市町村割合) #save("年間収入階級別1世帯当たり1か月間の収入と支出", file="/home/user/R/work/年間収入階級別1世帯当たり1か月間の収入と支出.dat") #load("年間収入階級別1世帯当たり1か月間の収入と支出.dat") d<-年間収入階級別1世帯当たり1か月間の収入と支出 #temp1 <- melt(d,id=c("No","年間収入階級"), measure=c( "全国", "大都市", "中都市","小都市町村")) temp2<- melt(d,id=c("No","年間収入階級"), measure=c( "全国割合", "大都市割合", "中都市割合","小都市町村割合")) ggplot(temp2, aes(x=reorder(年間収入階級,No),y=value)) + geom_bar(stat="identity", position = "dodge",aes(group=variable,fill=variable)) + xlab("年間収入")+ ylab("世帯数割合(%)")+ ggtitle("年間収入金額別世帯数割合(%)(2013年)") + theme(legend.title=element_blank(),axis.text.x = element_text(angle = 45, hjust = 1)) #ggsave("kakei02.png",dpi = 120, width = 8, height = 6)
|