我喜欢使用 geom_density_ridges(),每个组也包含单独的点。然而,一些组的样本量较小(例如 n=1 或 2)排除了密度脊的产生。对于这些组,我希望能够绘制现有观测值的位置 - 即使不会显示概率密度函数。
在此示例中,我希望能够在适当的线上绘制 May 的 2 个数据点。
library(tidyverse)
library(ggridges)
data("lincoln_weather")
#pull weather from all months that are NOT May
lincoln_weather_nomay<-lincoln_weather[which(lincoln_weather$Month!="May"),]
#pull weather just from May
lincoln_weather_may<-lincoln_weather[which(lincoln_weather$Month=="May"),]
#recombine, keeping only the first two rows for the May dataset
new_weather<-rbind(lincoln_weather_nomay,lincoln_weather_may[c(1:2),])
ggplot( new_weather, aes(x=`Min Temperature [F]`,y=Month,fill=Month))+
geom_density_ridges(alpha = 0.5,jittered_points = TRUE, point_alpha=1,point_shape=21) +
labs(x="Average temperature (F)",y='')+
guides(fill=FALSE,color=FALSE)
如何将 May 观测值的点添加到适当的位置(即 May 槽)和沿 x 轴的适当位置?