gpt4 book ai didi

r - 尝试映射 geom_vline 的值,但未使用 R 中的 ggplot 在 x 轴上的正确位置绘制

转载 作者:行者123 更新时间:2023-12-02 05:07:58 25 4
gpt4 key购买 nike

我目前正在尝试生成 NOAA 潮汐预测图表(x = 日期时间,y = 水位),其中黎明/日出/黄昏/日落时间作为沿 x 轴时间线的垂直线。

rnoaa 包调用数据并为我提供 POSIXct 中的预测日期时间。 suncalc 库为我提供了一个数据框,其中包含日出、日落等范围内的每个日期,也采用 POSIXct 格式。

library(rnoaa)
library(tidyverse)
library(ggplot2)
library(suncalc)
march.tides <- as.data.frame(coops_search(station_name = 8551762,
begin_date = 20200301, end_date = 20200331,
datum = "mtl", product = "predictions"))
march.tides <- march.tides %>%
mutate(yyyy.mm.dd = as.Date(predictions.t))
dates <- unique(march.tides$yyyy.mm.dd)
sunlight.times <- getSunlightTimes(date = seq.Date(as.Date("2020/3/1"), as.Date("2020/3/31"), by = 1),
lat = 39.5817, lon = -75.5883, tz = "EST")

然后我有一个循环,为每个日历日期吐出单独的图 - 这很有效。垂直线在图表上绘制时没有错误,但绝对位于错误的位置(日出是在上午 11 点左右绘制的,而实际上应该是 06:30)。

for (i in seq_along(dates)) {
plot <- ggplot(subset(march.tides, march.tides$yyyy.mm.dd==dates[i])) +
aes(x = predictions.t, y = predictions.v) +
geom_line(size = 1L, colour = "#0c4c8a") +
theme_bw() +
geom_vline(xintercept = sunlight.times$sunrise) +
geom_vline(xintercept = sunlight.times$sunset) +
geom_vline(xintercept = sunlight.times$dawn, linetype="dotted") +
geom_vline(xintercept = sunlight.times$dusk, linetype="dotted") +
ggtitle(dates[i])
print(plot)
}

我可以选择分面单独的日期,而不是这种循环方法。即使当我将数据子集到单个日期时,垂直线仍然无法正确绘制。

我想知道问题是否是时区问题。如果我尝试将时区参数粘贴到潮汐预测数据调用中,则会收到错误:

Error in if (!repeated && grepl("%[[:xdigit:]]{2}", URL, useBytes = TRUE)) return(URL) : 
missing value where TRUE/FALSE needed

最佳答案

您似乎想使用 EST 作为时区,因此您可以将 predictions.t 包含在转换中。

我会明确您想要使用scale_x_datetimeggplot中的x轴上标记的内容,包括时区。

library(rnoaa)
library(tidyverse)
library(ggplot2)
library(suncalc)
library(scales)

march.tides <- as.data.frame(coops_search(station_name = 8551762,
begin_date = 20200301, end_date = 20200331,
datum = "mtl", product = "predictions"))

march.tides <- march.tides %>%
mutate(yyyy.mm.dd = as.Date(predictions.t, tz = "EST"))
dates <- unique(march.tides$yyyy.mm.dd)
sunlight.times <- getSunlightTimes(date = seq.Date(as.Date("2020/3/1"), as.Date("2020/3/31"), by = 1),
lat = 39.5817, lon = -75.5883, tz = "EST")

for (i in seq_along(dates)) {
plot <- ggplot(subset(march.tides, march.tides$yyyy.mm.dd==dates[i])) +
aes(x = predictions.t, y = predictions.v) +
geom_line(size = 1L, colour = "#0c4c8a") +
theme_bw() +
geom_vline(xintercept = sunlight.times$sunrise) +
geom_vline(xintercept = sunlight.times$sunset) +
geom_vline(xintercept = sunlight.times$dawn, linetype="dotted") +
geom_vline(xintercept = sunlight.times$dusk, linetype="dotted") +
ggtitle(dates[i]) +
scale_x_datetime(labels = date_format("%b %d %H:%M", tz = "EST"))
print(plot)
}

情节

tide plot with xaxis date scale with timezone

关于r - 尝试映射 geom_vline 的值,但未使用 R 中的 ggplot 在 x 轴上的正确位置绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60459693/

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