R에서 GET으로 사이트 내용 가져오기 :: R을 이용한 웹 크롤링 - mindscale
Skip to content

R에서 GET으로 사이트 내용 가져오기

httr 라이브러리 불러오기

library(httr)

httr 라이브러리의 GET 함수를 이용해 HTTP 표준 문서를 불러와 http.standard 변수에 저장

http.standard <- GET('http://www.w3.org/Protocols/rfc2616/rfc2616.html')