1

まず第一に、私はWebスクレイピングの初心者です。

したがって、このウェブサイトで作業してください。私はエピソードについて議論する次の Web ページへのリンクを取得しようとします。SelectorGadget を使用して、トピックのあるフレームを含む html の一部のみを取得することができました

html.s1e01 <- html("http://asoiaf.westeros.org/index.php/forum/41-e01-winter-is-coming/")

html.s1e01.page <- html_nodes(html.s1e01, ".ipsBox")

今、トピックへのすべてのリンクを取得したいので、試しました

html_attr(html.s1e01.page, "href")

しかし、私は得るNA。インターネットで同様の例を見ましたが、うまくいくはずです。なぜそうしないのか、何か提案はありますか?

4

1 に答える 1

2
html.s1e01.page <- html_nodes(html.s1e01, ".ipsBox .topic_title")
html.s1e01.topics <- html.s1e01.page %>%  html_attr("href")
html.s1e01.topics

##  [1] "http://asoiaf.westeros.org/index.php/topic/49408-poll-how-would-you-rate-episode-101/"                        
##  [2] "http://asoiaf.westeros.org/index.php/topic/109202-death-of-john-aryn-season-4-episode-5-spoilers/"            
##  [3] "http://asoiaf.westeros.org/index.php/topic/49310-book-spoilers-episode-101-take-3/"                           
##  [4] "http://asoiaf.westeros.org/index.php/topic/90902-sir-john-standingjonarryn/"                                  
##  [5] "http://asoiaf.westeros.org/index.php/topic/106105-did-anyone-notice-the-color-of-the-feather-in-lyannas-tomb/"
##  [6] "http://asoiaf.westeros.org/index.php/topic/49116-book-tv-spoilers-what-was-left-out-and-what-was-left-in/"    
##  [7] "http://asoiaf.westeros.org/index.php/topic/49070-no-spoilers-ep101-discussion/"                               
##  [8] "http://asoiaf.westeros.org/index.php/topic/49159-book-spoilers-the-book-was-better/"                          
##  [9] "http://asoiaf.westeros.org/index.php/topic/57614-runes-in-agot-spoilers-i-suppose/"                           
## [10] "http://asoiaf.westeros.org/index.php/topic/49151-book-spoilers-ep101-discussion-mark-ii/"                     
## [11] "http://asoiaf.westeros.org/index.php/topic/49161-booktv-spoilers-dany-drogo/"                                 
## [12] "http://asoiaf.westeros.org/index.php/topic/49071-book-spoilers-ep101-discussion/"                             
## [13] "http://asoiaf.westeros.org/index.php/topic/49100-no-spoilers-pre-airing-discussion/"                          
于 2015-03-11T01:42:04.740 に答える