利用rvest包爬取薄荷網(wǎng)食物熱量數(shù)據(jù)

library(rvest)

myurl <- "http://www.boohee.com/food/group/"

food_cal <- data.frame()

for(i in 1:10){ #循環(huán)采集10種類型的食物熱量

? ? ? ? food_class <- read_html(paste0(myurl,i,"?page=1")) %>%

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? html_nodes("div[class='widget-food-list pull-right'] h3") %>%

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? html_text()#獲取食物類型數(shù)據(jù)

? ? ? ?food_class <- sub("\n","",food_class)#將多余符號(hào)去掉

? ? ? ?food_class <- rep(food_class, 100) #重復(fù)100遍

? ? ? ?food_name <- c()

? ? ? ?cal <- c()

? ? ? ?for(j in 1:10){ #每種類型循環(huán)采集10頁(yè)

? ? ? ? ? ? ? ? myurlpaste <- paste0(myurl,i,"?page=",j)

? ? ? ? ? ? ? ? myweb <- read_html(myurlpaste)

? ? ? ? ? ? ? ? food_name1 <- myweb %>%

? ? ? ? ? ? ? ? ? ? ? ? ? html_nodes(".food-list li div[class = 'text-box pull-left'] a") %>%

? ? ? ? ? ? ? ? ? ? ? ? ? html_text() #食物名稱

? ? ? ? ? ? ? ?cal1 <- myweb %>%

? ? ? ? ? ? ? ? ? ? ? ? ? html_nodes(".food-list li div[class = 'text-box pull-left'] p") %>%

? ? ? ? ? ? ? ? ? ? ? ? ? html_text() #食物熱量

? ? ? ? ? ? ? food_name <- c(food_name, food_name1)

? ? ? ? ? ? ? cal <- c(cal, cal1)

? ? ? ? ? ?}

? ? ?food_cal1 <- data.frame(food_class, food_name, cal)

? ? ?food_cal <- rbind(food_cal, food_cal1)

}

write.csv(food_cal, file = "E:\\薄荷食物熱量.csv")

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn),斷路器,智...
    卡卡羅2017閱讀 136,568評(píng)論 19 139
  • 說(shuō)明本次redis集群安裝在rhel6.8 64位機(jī)器上,redis版本為3.2.8,redis的gem文件版本為...
    讀或?qū)?/span>閱讀 15,636評(píng)論 3 9
  • 當(dāng)你深夜徘徊在我樓下,當(dāng)你半夜敲開(kāi)我的門,當(dāng)我滿懷驚喜站在你的面前,你輕輕的說(shuō)“能幫我給她打個(gè)電話嗎?我想約她出來(lái)...
    黑七七閱讀 298評(píng)論 0 1
  • 雨季總會(huì)帶給我許多驚慌失措,往往都是沒(méi)帶傘的窘迫。 下雨的城市安靜了,雨水沖走了喧囂。 小小人兒窩在溫馨的小家,坐...
    昨夜星辰昨夜夢(mèng)閱讀 130評(píng)論 0 0
  • 迎面吹來(lái)涼爽的晚風(fēng),好像有誰(shuí)在路邊等?;貞浽谏磉吺幥锴?,時(shí)針轉(zhuǎn)回到初四那年,往事歷歷在目,每天早晚的路,每天的課程...
    目光捕手一九八閱讀 400評(píng)論 0 0

友情鏈接更多精彩內(nèi)容