gpt4 book ai didi

r - 在 Rstudio 中使用 rvest 抓取时,我得到了与网络上不同的 html 文本

转载 作者:行者123 更新时间:2023-12-03 18:49:26 25 4
gpt4 key购买 nike

所以我试图在足球比赛即将到来时制作一个日历(数据框)。我对这些列一一进行了网络抓取,因为我不需要所有这些列。
当用时间日期 (HORA) 抓取列时,我得到一个不正确的值,不知道为什么......我不认为它必须与时区一起,因为它只是文本。

library(rvest)
url <- "https://www.cruzados.cl/competitions/campeonato-nacional"
page <- read_html(url)

hora_inicio <- page %>% html_nodes("td.team-schedule__time") %>% html_text()

> hora_inicio
[1] "21:00" "22:30" "23:15" "22:30" "00:30" "00:00" "02:00" "02:00" "19:00" "22:00" "19:00" "22:15" "19:00" "02:00"
[15] "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00" "19:00"
[29] "19:00" "19:00" "19:00" "19:00" "19:00" "20:00" "20:00" "20:00" "20:00" "20:00" "20:00"
正确的是:
18:00, 19:30, 19:15, 18:30, 20:30, 20:00, 18:00, ...

最佳答案

实际上,html 结果中显示的日期时间是 UTC 时区。 JS 正在根据您的时区更新结果。
以下将提取日期和时间,将它们组合起来并将 UTC 日期时间转换为您当前的时区:

library(rvest)

url <- "https://www.cruzados.cl/competitions/campeonato-nacional"
page <- read_html(url)

Sys.setlocale(locale="es_ES.UTF-8")

date <- page %>% html_nodes("td.team-schedule__date") %>% html_text()
time <- page %>% html_nodes("td.team-schedule__time") %>% html_text()

dates <- as.Date(gsub("sept", "sep", date), format="%a. %d / %b. / %Y") #dom. 21 / mar. / 2021

i <- 1
tzDates <- list()
for(date in as.list(dates)) {
utcDate <- as.POSIXct(paste0(format(date, "%Y-%m-%d")," ",time[i]), format="%Y-%m-%d %H:%M",tz = "UTC")
tzDates[[i]] <- as.POSIXlt(utcDate, tz = Sys.timezone())
i <- i+1
}
print(tzDates)
您将需要语言环境 es_ES.UTF-8es_CL.UTF-8安装是为了获得西类牙语的缩写月/工作日。

就我而言,我位于法国,您可以从 UTC+1 to UTC+2 看到 3 月 28 日的时间变化。 :
[1] "2021-03-21 22:00:00 CET"
[2] "2021-03-29 00:30:00 CEST"
[3] "2021-04-05 01:15:00 CEST"
返回的 html 是 (UTC) :
[1] "2021-03-21 21:00"
[2] "2021-03-28 22:30"
[3] "2021-04-04 23:15"

关于r - 在 Rstudio 中使用 rvest 抓取时,我得到了与网络上不同的 html 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67187696/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com