2017-05-18 13 views
1

를로드하지 못했습니다 :htmlParse 내가</p> <pre><code>url <- ("http://angel.co/companies?locations[]=1647-India") </code></pre> <p><strong>코드</strong>에서 데이터를 추출하려고 외부 엔티티

library(XML) 
my <- htmlParse(url) 

Error: failed to load external entity from url

이 시도 2 ​​ :

library(XML) 
library(httr) 
qw <- GET(url) 
my <- readHTMLTable(rawToChar(qw$content)) 

Error in qw$content : $ operator is invalid for atomic vectors

봅니다 3는 : URL이 301 상태를 제공하고, 그 원인은 웹 사이트입니다

qw <- getURL(url) 
my <- readHTMLTable(url, stringsAsFactors = F) 

Error: could not find function "getURL"

Error: failed to load external entity from url

답변

0

SSL 연결할 수 있습니다. 시도해보십시오 (기본적으로 차이는 http 대신 https입니다).

library(XML) 
library(RCurl) 
url <- ("https://angel.co/companies?locations[]=1647-India") 
htmlContent <- getURL(url) 
htmlTree <- htmlTreeParse(htmlContent)