Joh*_*ish 5 r date ggplot2 confidence-interval
我需要绘制月平均温度并在 x 轴上缩写月份,我需要添加 95% 的置信区间,但不确定如何添加。任何 CI 的视觉效果都会很好。
然后我需要绘制
我被Date...Time
分成了单独的列,但我无法让 X 轴用month.abb
in显示缩写的月份ggplot
。
我得到了以下数据集(为 stackflow 缩短):
# Data
CleanTempSal = data.frame(
stringsAsFactors = F,
Date...Time = c(
"1/31/2017 20:00",
"1/31/2017 21:00",
"1/31/2017 22:00",
"1/31/2017 23:00",
"2/1/2017 0:00",
"2/1/2017 1:00",
"2/1/2017 2:00",
"2/1/2017 3:00",
"3/21/2017 10:00",
"3/21/2017 11:00",
"3/21/2017 12:00",
"3/21/2017 13:00"),
Temp..C. = c(14.87, 14.77, 15.08, 15.08,
14.96, 14.87, 15.05, 15.05,
18.87, 19.32, 19.97, 20.44),
Salinity.psu. = c(14.58, 14.52, 14.44, 14.46,
14.56, 14.67, 14.78, 14.88,
18.78, 18.81, 19.41, 19.16),
Conduc.mS.cm. = c(19.33, 19.21, 19.26, 19.28,
19.34, 19.44, 19.66, 19.78,
26.67, 26.96, 28.14, 28.09)
)
Run Code Online (Sandbox Code Playgroud)
Date...Time Temp..C. Salinity.psu. Conduc.mS.cm.
1/31/2017 20:00 14.87 14.58 19.33
1/31/2017 21:00 14.77 14.52 19.21
1/31/2017 22:00 15.08 14.44 19.26
1/31/2017 23:00 15.08 14.46 19.28
2/1/2017 0:00 14.96 14.56 19.34
2/1/2017 1:00 14.87 14.67 19.44
2/1/2017 2:00 15.05 14.78 19.66
2/1/2017 3:00 15.05 14.88 19.78
3/21/2017 10:00 18.87 18.78 26.67
3/21/2017 11:00 19.32 18.81 26.96
3/21/2017 12:00 19.97 19.41 28.14
3/21/2017 13:00 20.44 19.16 28.09
Run Code Online (Sandbox Code Playgroud)
和代码。
library(tidyverse)
library(ggplot2)
library(lubridate)
# convert date column to date class
CleanTempSal$Date...Time <- as.POSIXct(CleanTempSal$Date...Time, format = "%m/%d/%y %H:%M")
#Add Month Column to data set
CleanTempSal <- CleanTempSal %>% mutate(month = month(Date...Time))
CleanTempSal <- CleanTempSal %>% mutate(month2 = month.abb[month])
CleanTempSal <- CleanTempSal %>% mutate(year = year(Date...Time))
CleanTempSal <- CleanTempSal %>% mutate(hour = hour(Date...Time))
#group by month and take the mean of that month
a <- CleanTempSal %>%
group_by(month) %>%
summarise(month_mean = mean(Temp..C.))
#plot mean monthly temp
ggplot(a, aes(month, month_mean)) +
geom_point(aes(color = month_mean)) +
geom_line(aes(color = month_mean)) +
scale_color_gradient("Temp", low = "blue", high = "red4") +
labs(x = "Month of 2017",
y = "Water Tempearture (C)",
title = "Monthy Mean Water Temperature",
subtitle = "NCBS Dock - Cedar Key, FL")
Run Code Online (Sandbox Code Playgroud)
给我这个
提供的数据不会产生与我为简单起见将其缩短的相同的图。它只会给前 3 个月,手段会有所不同,但可以实现相同的目标。
这是解决这个问题的一种方法:
为了获得月份缩写,我可能会考虑将月份保留为POSIXct
。通过使用,floor_date
您可以获得每个时间点的月份并以所需的格式存储。绘图时,您可以使用scale_x_datetime
并指定要在 x 轴上使用的标签。在这种情况下,%b
将提供月份缩写。
要确定 95% 置信区间,可以考虑不同的方法。一种方法是手动计算 95% CI。请注意,此处做出假设(基于学生 t 分布)。在本例中,我使用了geom_ribbon
一些透明度(alpha .2)来显示点之间的间隔。作为替代方案,您可以使用stat_summary
,它将计算平均值和 95% CI 并显示在 中ggplot
。
#group by month and take the mean of that month
a <- CleanTempSal %>%
group_by(month = floor_date(Date...Time, unit = "month")) %>%
summarise(month_mean = mean(Temp..C.),
sd = sd(Temp..C.),
n = n()) %>%
mutate(se = sd / sqrt(n),
lower.ci = month_mean - qt(1 - (.05/2), n - 1) * se,
upper.ci = month_mean + qt(1 - (.05/2), n - 1) * se)
#plot mean monthly temp
ggplot(a, aes(x = month, y = month_mean)) +
geom_point(aes(color = month_mean)) +
geom_line(aes(color = month_mean)) +
geom_ribbon(aes(ymin = lower.ci, ymax = upper.ci), alpha = 0.2) +
scale_color_gradient("Temp", low = "blue", high = "red4") +
scale_x_datetime(date_breaks = "1 month", date_labels = "%b") +
labs(x = "Month of 2017",
y = "Water Tempearture (C)",
title = "Monthy Mean Water Temperature",
subtitle = "NCBS Dock - Cedar Key, FL")
Run Code Online (Sandbox Code Playgroud)
阴谋
编辑(4/16/20):
如果您有多年的数据,在计算 SD 和 SE 时,您应该按月份和年份进行分组:
group_by(month = floor_date(Date...Time, unit = "month"), year)
Run Code Online (Sandbox Code Playgroud)
此外,我修改了ggplot
显示错误栏而不是功能区。为了获取误差线的宽度,进行了一些细微的更改,包括使用as.Date(month)
和scale_x_date
。
#group by month and take the mean of that month
a <- CleanTempSal %>%
group_by(month = floor_date(Date...Time, unit = "month"), year) %>%
summarise(month_mean = mean(Temp..C.),
sd = sd(Temp..C.),
n = n()) %>%
mutate(se = sd / sqrt(n),
lower.ci = month_mean - qt(1 - (.05/2), n - 1) * se,
upper.ci = month_mean + qt(1 - (.05/2), n - 1) * se)
#plot mean monthly temp
ggplot(a, aes(x = as.Date(month), y = month_mean)) +
geom_point(aes(color = month_mean)) +
geom_line(aes(color = month_mean)) +
#geom_ribbon(aes(ymin = lower.ci, ymax = upper.ci), alpha = 0.2) +
geom_errorbar(aes(ymin = month_mean - se, ymax = month_mean + se), width = 1) +
scale_color_gradient("Temp", low = "blue", high = "red4") +
scale_x_date(date_breaks = "1 month", date_labels = "%b %y") +
labs(x = "Month",
y = "Water Tempearture (C)",
title = "Monthy Mean Water Temperature",
subtitle = "NCBS Dock - Cedar Key, FL")
Run Code Online (Sandbox Code Playgroud)
阴谋
数据
CleanTempSal <- structure(list(Date...Time = structure(c(1485914400, 1485918000,
1485921600, 1485925200, 1485928800, 1485932400, 1485936000, 1485939600,
1490108400, 1490112000, 1490115600, 1490119200), class = c("POSIXct",
"POSIXt"), tzone = ""), Temp..C. = c(14.87, 14.77, 15.08, 15.08,
14.96, 14.87, 15.05, 15.05, 18.87, 19.32, 19.97, 20.44), Salinity.psu. = c(14.58,
14.52, 14.44, 14.46, 14.56, 14.67, 14.78, 14.88, 18.78, 18.81,
19.41, 19.16), Conduc.mS.cm. = c(19.33, 19.21, 19.26, 19.28,
19.34, 19.44, 19.66, 19.78, 26.67, 26.96, 28.14, 28.09), month = c(1,
1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3), month2 = c("Jan", "Jan", "Jan",
"Jan", "Feb", "Feb", "Feb", "Feb", "Mar", "Mar", "Mar", "Mar"
), year = c(2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017,
2017, 2017, 2017), hour = c(20L, 21L, 22L, 23L, 0L, 1L, 2L, 3L,
10L, 11L, 12L, 13L)), class = "data.frame", row.names = c(NA,
-12L))
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
436 次 |
最近记录: |