#49_140822_R_LINE CHART
# LINE CHART l Line Chart > cars plot(cars,type="o",col="blue",main="test") > trucks lines(trucks,type="o",pch=20,lty=2,col="red") > plot(sal,comm) > a a a[1] 8 8 8 8 0 0 0 8 7 8 8 8 7 8 8 8 8 8 7 7 7 8 8 8 8 8 8 8 8 8 8 0 8 8 8 8 8 8 0 8> plot(a,type="o",col="blue",ann=F) > a a [1] 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8> lines(a,type="o",lty=2,col="red")..
더보기
#49_140822_R_BAR PLOT
# BAR PLOT l bar plot(막대그래프)> barplot(emp$sal) >> 아래의 그림을 R로 구현 tapply(사고선박수,list(substr(발생시기,6,7),관할해경서),sum)a barplot(emp$sal, main="Salary Bar Cahrd") > barplot(emp$sal, main="Salary Bar Chart", xlab="Name", ylab="Salary",names.arg=emp$ename) > barplot(emp$sal, main="Salary Bar Chart", xlab="Name", ylab="Salary",names.arg=emp$ename,col=rainbow(15)) >> 직업, 직업별 토탈월급에 대한 막대 그래프를 그리시오 > x barplot..
더보기