반응형
fire <- read.csv("fire.csv")
fire
install.packages("reshape")
library(reshape)
names(fire) <- c("관서명","y2011","y2012","LAT","LON")
#위도, 경도, 2011년 자료만 추출하여 데이터프레임을 구성한다.
lat <- fire$LAT
lon <- fire$LON
y2011 <-fire$y2011
data3<- data.frame(lat,lon,y2011)
install.packages("devtools")
library(ggmap)
library(ggplot2)
register_google(key="구글키 입력") # 구글에서 키를 받아온다.
map <- get_map("Seoul", zoom=10, maptype="roadmap")
map <- ggmap(map)
map + geom_point(aes(x=lon,y=lat,color=y2011,size=y2011),data=data3)
아래의 데이터로 실습해 보시기 바랍니다.
구글에서 키를 받아오는 방법은 다음 글을 참조해주세요
반응형
'R프로그래밍,통계학' 카테고리의 다른 글
R 길어진 코드 자동 줄바꿈 하는 방법 (0) | 2020.07.27 |
---|---|
(R)구글 API 키 가져오는 방법(2020년 7월 26일) (1) | 2020.07.26 |
R완전 삭제하고 제대로 다시 설치하기! (0) | 2020.07.26 |
R(studio)버전확인 (0) | 2020.07.25 |
남자 나이대별 폰 사용 비율 (0) | 2020.07.23 |