亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

R語言爬蟲如何爬取招聘網站的招聘信息

發布時間:2021-11-22 11:04:21 來源:億速云 閱讀:165 作者:柒染 欄目:云計算

R語言爬蟲如何爬取招聘網站的招聘信息,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

R語言爬取招聘網上的招聘信息,雖然R做爬蟲確實沒python專業,但是有一個包rvest我覺得還不錯,我嘗試爬取58同城招聘網上的數據。

rvest包,用到的函數有:

read_html(),

html_nodes(),

html_text(),

html_attr();

具體源代碼如下:

#####加載相關包############

library(xml2)

library(rvest)

library(base)

下面獲得每個子網站的地址

#58同城主網站網址

url<-"http://jingzhou.58.com/?utm_source=market&spm=b-31580022738699-pe-f-829.hao360_101"

web<-read_html(url,encoding = "utf-8")

xpath<-"div.col3 a"

#############子網站網址###########

title<-web%>%html_nodes(xpath)%>%html_text()

link<-web%>%html_nodes(xpath)%>%html_attr("href")

##########對子網站翻頁########

id<-c(1:20)

pn<-paste0("pn",id,"/")#下載的網址有規律地缺失paste0()是字符串連接函數

###########清理網址中的缺失值#########

for (http in 1:length(link)) {

  httplink<-substr(link[http],1,4)

  if(httplink=="http"){link[http]<-substr(link[http],"",link[http])}

}

link<-na.omit(link)

filename<-"E:\\工作簿1.csv"#本地文件路徑,用以存儲下載的數據

job<-"職位";company<-"公司";location<-"地域";time<-"發布時間"

data<-data.frame(job,company,location,time)

len<-max(length(job),length(company),length(location),length(time))

########從子網站爬取數據##########

for (i in 1:length(link)) {

  link0<-paste0("http://jingzhou.58.com",link[i],pn,"&utm_source=market&spm=b-31580022738699-pe-f-829.hao360_101&PGTID=0d100000-00d9-7474-25a7-e93482a12861&ClickID=xxxx")

  link1<-paste0("http://jingzhou.58.com",link[i],pn,"?utm_source=market&spm=b-31580022738699-pe-f-829.hao360_101&PGTID=0d100000-00d9-7fce-21b0-b8956617e76f&ClickID=xxxx")

#####網址最后的變化###########

   for (j in 1:length(link)) {

    link0<-gsub("xxxx",j,link0)

    link1<-gsub("xxxx",j,link1)

#####網站名的兩種類型用trycatch()消除錯誤#####

    for (k in 1:length(pn)) {

    tryCatch(

      {web<-read_html(link0[k],encoding = "utf-8")},

      error={web<-read_html(link1[k],encoding = "utf-8")})

###########提取需要的變量###########

  job_path<-"dt a"; #獲取職位節點

  company_path<-"dd.w271 a";#獲取公司節點

  location_path<-"dd.w96";#獲取地域節點

  time_path<-"dd.w68";#獲取發布時間節點

  job<-web%>%html_nodes(job_path)%>%html_text();

  company<-na.omit(web%>%html_nodes(company_path)%>%html_text());

  location<-web%>%html_nodes(location_path)%>%html_text();

  time<-web%>%html_nodes(time_path)%>%html_text();

  job<-job[1:len];company<-company[1:len];location<-location[1:len];time<-time[1:len]#長度一致#

  data1<-data.frame(job,company,location,time);

 if(length(data>0)){

  data<-na.omit(rbind(data,data1))}

  else

  {data1<-rep(NA,len);data<-na.omit(rbind(data,data1))}

    }

  }

  Sys.sleep(3)#每隔3秒鐘停一次,防止反爬蟲

  print(i)

  print("sleep end,download start!")

}

data<-data[-1,]

write.csv(data,file = filename)

就是這樣了,自己實操一遍才好。

關于R語言爬蟲如何爬取招聘網站的招聘信息問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长治市| 沙湾县| 陇西县| 农安县| 柳河县| 类乌齐县| 禄丰县| 偃师市| 利川市| 乌拉特后旗| 秀山| 利辛县| 禄丰县| 资讯| 马鞍山市| 云南省| 同德县| 陵水| 报价| 彭阳县| 永昌县| 福鼎市| 郁南县| 冷水江市| 昭觉县| 神农架林区| 会宁县| 高雄县| 凭祥市| 醴陵市| 杭州市| 读书| 康马县| 谷城县| 红安县| 锦州市| 永宁县| 利津县| 房产| 东平县| 城固县|