R语言 | 2d概率密度分布图

1个变量的分布可以用hist,两个变量呢?可以用等高线图、登高颜色图。

1. 效果图

2. 源代码

复制代码
# 2d概率密度图
library(ggplot2)
p1=ggplot(faithful, aes(eruptions, waiting) )

plots=list()

#1. 散点图
plots[[1]]=p1 + 
  geom_point(colour = "black") + 
  theme_bw()+ggtitle("1")

# 等高线图
plots[[2]]=p1 + 
  stat_density2d(color = "black", size = 1) + 
  theme_bw()+ggtitle("2")

# 散点图+等高线
plots[[3]]=p1 +
  stat_density2d(color = "black", size = 1) + 
  geom_point(colour = "black") + 
  theme_bw()+ggtitle("3")


# 将密度映射到等高线
plots[[4]]=p1 +
  #stat_density2d(aes(color = ..level..), size = 1.5) + 
  stat_density2d(aes(color = after_stat(level) ), linewidth = 1.5) + 
  geom_point(colour = "black") + 
  scale_color_distiller(palette = "RdYlGn") + 
  theme_bw()+ggtitle("4")


#2. geom = "tile" 绘制颜色表示的密度图
plots[[5]]=p1 +
  stat_density2d(geom = "tile", aes(fill = ..density..), contour = FALSE) + 
  scale_fill_distiller(palette = "RdYlGn") + 
  theme_classic()+ggtitle("5")

# geom = "raster" 同上,栅格化
plots[[6]]=p1 +
  stat_density2d(geom = "raster", aes(fill = ..density..), contour = FALSE) + 
  scale_fill_distiller(palette = "RdYlGn")  + 
  theme_bw()+ggtitle("6")

# 对带宽进行调整
plots[[7]]=p1 +
  stat_density2d(geom = "raster", aes(fill = ..density..), 
                 contour = FALSE, 
                 h = c(1, 5)) +  # 修改带宽,h参数传参给 kde2d()产生密度估计 >?kde2d
  scale_fill_distiller(palette = "RdYlGn")  + 
  theme_bw()+ggtitle("7")
#h	 Bandwidth (vector of length two). If NULL, estimated using MASS::bandwidth.nrd().

# 3. 综合
plots[[8]]=p1 +
  stat_density2d(geom = "raster", aes(fill = ..density..), contour = FALSE) + 
  stat_density2d(color = "black", size = 0.7) + 
  geom_point(colour = "black", size=1) + 
  scale_fill_distiller(palette = "RdYlGn")  + 
  theme_classic()+ggtitle("8")

# 细节调整
plots[[9]]=p1 +
  stat_density2d(geom = "raster", aes(fill = ..density..), contour = F) + 
  #stat_density2d(color = "black", size = 0.6, bins=8) + 
  stat_density2d(color = "black", size = 0.6, binwidth=0.0035) + 
  geom_point(colour = "black", size=0.8) + 
  scale_fill_gradient2(low = "navy", 
                      mid = "#FFF200", midpoint = 0.012,
                      high="#ED1C24")  +
  theme_classic()+ggtitle("9")

# 拼接图
patchwork::wrap_plots(plots, ncol = 3)

Ref

相关推荐
侃侃_天下2 天前
最终的信号类
开发语言·c++·算法
echoarts2 天前
Rayon Rust中的数据并行库入门教程
开发语言·其他·算法·rust
Aomnitrix2 天前
知识管理新范式——cpolar+Wiki.js打造企业级分布式知识库
开发语言·javascript·分布式
每天回答3个问题2 天前
UE5C++编译遇到MSB3073
开发语言·c++·ue5
伍哥的传说2 天前
Vite Plugin PWA – 零配置构建现代渐进式Web应用
开发语言·前端·javascript·web app·pwa·service worker·workbox
小莞尔2 天前
【51单片机】【protues仿真】 基于51单片机八路抢答器系统
c语言·开发语言·单片机·嵌入式硬件·51单片机
我是菜鸟0713号2 天前
Qt 中 OPC UA 通讯实战
开发语言·qt
JCBP_2 天前
QT(4)
开发语言·汇编·c++·qt·算法
Brookty2 天前
【JavaEE】线程安全-内存可见性、指令全排序
java·开发语言·后端·java-ee·线程安全·内存可见性·指令重排序
百锦再2 天前
[特殊字符] Python在CentOS系统执行深度指南
开发语言·python·plotly·django·centos·virtualenv·pygame