rvest 패키지 설치하기, rvest 패키지 임포트

CODEDRAGON Development/Big Data, R, ...

반응형


 

 

rvest 패키지 설치하기

install.packages("rvest")

> install.packages("rvest")
Installing package into ‘C:/Users/prons/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
also installing the dependencies ‘xml2’, ‘selectr’

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/xml2_1.1.1.zip'
Content type 'application/zip' length 3529491 bytes (3.4 MB)
downloaded 3.4 MB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/selectr_0.3-1.zip'
Content type 'application/zip' length 160997 bytes (157 KB)
downloaded 157 KB

trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/rvest_0.3.2.zip'
Content type 'application/zip' length 853298 bytes (833 KB)
downloaded 833 KB

package xml2 successfully unpacked and MD5 sums checked
package ‘selectr’ successfully unpacked and MD5 sums checked
package ‘rvest’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
        C:\Users\Public\Documents\ESTsoft\CreatorTemp\

Rtmpik9BLC\downloaded_packages

>

 

 

rvest 패키지 임포트

library(rvest)

> library(rvest)
필요한 패키지를 로딩중입니다: xml2
> library(rvest)

>

 

 

반응형