R에서 tabplot, googleVis, ggplot2 등의 Package를 활용해서 다양한 그래프를 작성할 수 있습니다.
■ tabplot
install.packages("ggplot2")
library(ggplot2)
data(diamonds)
install.packages("tabplot")
library(tabplot)
tableplot(diamonds)
■ googleVis
#googleVis 예제: 움직이는 그래프를 생성해줌
install.packages("googleVis")
library(googleVis)
data(Fruits)
head(Fruits)
M2 <- gvisMotionChart(Fruits, idvar="Fruit", timevar="Date", date.format="%Y%m%d")
plot(M2)
■ ggplot2 사용
install.packages("ggplot2")
library(ggplot2)
ggplot(ChickWeight, aes(x=Time, y=weight, colour=Diet, group=Chick))+geom_line()
추가 관련 Source는 아래 파일 참조하시면 됩니다.
지도관련해서는 ggmap 패키지 활용하면 됩니다.
R에서 T-Test 사용방법 (0) | 2018.01.08 |
---|---|
R을 이용해서 주가 데이터 가져오기: Yahoo Finance 이용 (0) | 2014.03.12 |
R을 이용한 클러스터 분석: iris (0) | 2014.02.06 |
웹 상의 데이터를 자동으로 모으는 소프트웨어 Outwit Hub (0) | 2014.02.02 |
R과 R Studio 설치 및 관련 정보 (1) | 2014.01.29 |