#설정하기 setwd("c:/Rdata") getwd() #필요한 library 활성화하기 library(dplyr) library(ggmap) library(rvest) 구글맵을 사용하기 위한 구글지도 API 키를 받아야 한다. 받은 키는 아래와 같이 작성한다. register_google(key = "여기에 키 복붙하면 됨") ex) 홍은동 지도 보기 get_map(location = '서울 서대문구 홍은동', zoom = 16, maptype = "hybrid", source='google') %>% ggmap() ex) 서울 위경도 좌표 받기 geocode(location = '서울', output = 'latlon', source = 'google') ex) 원하는 위치의 위경도 정보를 얻는 방..
저작권 문제로 아무거나 크롤링을 할 수 없다는 말씀과 함께 주신 과제... library(rvest) library(stringr) library(dplyr) library(ggplot2) library(wordcloud) library(wordcloud2) cnt=c() base_url="https://www.bskorea.or.kr/bible/korbibReadpage.php?version=GAE&book=gen&chap=" for(i in 1:50){ cr_url=paste0(base_url,i) t_css="#tdBible1 span" hdoc=read_html(cr_url,encoding = 'UTF-8') n_css=html_nodes(hdoc,t_css) cnt_part=html_text(n..