今天来给大家分享一篇教程关于R语言绘制Vonoroi图的完整代码,包括deldir包绘制Voronoi图,ggplot2绘制Voronoi图的实现代码,感兴趣的朋友跟随小编一起看看吧
deldir包绘制Voronoi图
#install.packages("deldir")
library(deldir)
# data
set.seed(1)
x <- runif(60)
y <- runif(60)
# Calculate Voronoi Tesselation and tiles
tesselation <- deldir(x, y)
tiles <- tile.list(tesselation)
plot(tiles, pch = 19,
border = "black", #边界颜色
showpoints = TRUE, #是否显示点
fillcol = hcl.colors(60, "Sunset")) #填充颜色
#改变图形的形状
#install.packages("polyclip")
library(polyclip)
# Circle环状
s <- seq(0, 2 * pi, length.out = 3000)
circle <- list(x = 0.5 * (1 + cos(s)),
y = 0.5 * (1 + sin(s)))
plot(tiles, pch = 19,
col.pts = "white",
border = "black",
fillcol = hcl.colors(60, "Sunset""),
clipp = circle)
ggplot2绘制Voronoi图
library(ggvoronoi)
library(ggplot2)
set.seed(1)
x <- sample(1:600, size = 100)
y <- sample(1:600, size = 100)
dist <- sqrt((x - 200) ^ 2 + (y - 200) ^ 2)
df <- data.frame(x, y, dist = dist)
ggplot(df, aes(x, y)) +
stat_voronoi(geom = "path",
color = 6,
lwd = 0.7,
linetype = 1)
geom_point()
#添加热图
ggplot(df, aes(x, y, fill = dist)) +
geom_voronoi() +
geom_point() +
scale_fill_gradient(low = "#20B2AA",
high = "#9370DB") #颜色
#添加边界线
ggplot(df, aes(x, y, fill = dist)) +
geom_voronoi() +
stat_voronoi(geom = "path") +
geom_point()+
scale_fill_gradient(low = "#20B2AA",
high = "#9370DB")
#theme(legend.position = "none") # 去掉右侧图例标签
以上就是R语言绘制Vonoroi图的详细内容,更多关于R语言绘制Vonoroi图的资料请关注编程学习网其它相关文章!
织梦狗教程
本文标题为:R语言绘制Vonoroi图的完整代码


基础教程推荐
猜你喜欢
- R语言-修改(替换)因子变量的元素操作 2022-11-26
- win10下使用virtualbox + vagrant配置ruby开发机环境 2023-07-23
- Swift中重写和重载的使用与对比总结 2023-07-05
- Swift初始化器与可选链的使用方法介绍 2023-07-08
- R语言 ggplot2改变柱状图的顺序操作 2022-11-17
- R语言绘制折线图实例分析 2022-11-21
- 浅析ELF转二进制允许把 Binary 文件加载到任意位置 2023-07-06
- Ruby3多线程并行Ractor使用方法详解 2023-07-23
- ruby-on-rails-为使用Rails 4,nginx和乘客的用户设置自定义域 2023-09-21
- ruby on rails validates 2023-09-22