作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SPEI 包及其 32 年的每月样本数据。我想修改 x Axis 标签以反射(reflect)年份而不是数字。但是,硬编码绘图功能不允许我这样做。我累了提取SPEI$fitted
数据并尝试使用 ggplot 复制相同的图,但没有成功。这是示例代码
install.packages("SPEI")
library(SPEI)
data("wichita")
wichita$PET=hargreaves(Tmin=wichita$TMIN, Tmax = wichita$TMAX, lat = 37.64)
wichita$BAL=wichita$PRCP - wichita$PET
SPEI_12=spei(wichita[,"BAL"],12)
plot.spei(SPEI_12, main = 12-Month SPEI)
最佳答案
我不太明白plot.spei
函数,所以我使用了 ggplot2
.
基本上我用拟合值的 ts 构建了一个数据框并创建了一个颜色/填充 condition对于正 ( pos
) 或负 ( neg
) 值。
library(zoo)
library(tidyverse)
DF <- zoo::fortify.zoo(SPEI_12$fitted)
DF <- DF %>%
dplyr::select(-Index) %>%
dplyr::mutate(Period = zoo::as.yearmon(paste(wichita$YEAR, wichita$MONTH), "%Y %m")) %>%
na.omit() %>%
dplyr::mutate(sign = ifelse(ET0_har >= 0, "pos", "neg"))
ggplot2::ggplot(DF) +
geom_bar(aes(x = Period, y = ET0_har, col = sign, fill = sign),
show.legend = F, stat = "identity") +
scale_color_manual(values = c("pos" = "darkblue", "neg" = "red")) +
scale_fill_manual(values = c("pos" = "darkblue", "neg" = "red")) +
scale_y_continuous(limits = c(-3, 3),
breaks = -3:3) +
ylab("SPEI") + ggtitle("12-Month SPEI") +
theme_bw() + theme(plot.title = element_text(hjust = 0.5))
DF2 <- DF %>%
tidyr::spread(sign, ET0_har) %>%
replace(is.na(.), 0)
ggplot2::ggplot(DF2) +
geom_area(aes(x = Period, y = pos), fill = "blue", col = "black") +
geom_area(aes(x = Period, y = neg), fill = "red", col = "black") +
scale_y_continuous(limits = c(-3, 3),
breaks = -3:3) +
ylab("SPEI") + ggtitle("12-Month SPEI") +
theme_bw() + theme(plot.title = element_text(hjust = 0.5))
关于r - 如何格式化R中SPEI包的硬编码绘图函数的x轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55960836/
这是一些数据 structure(list(Period = structure(c(2017.83333333333, 2017.91666666667, 2018, 2018.0833333333
我是一名优秀的程序员,十分优秀!