服务器之家

服务器之家 > 正文

R语言绘制Vonoroi图的完整代码

时间:2022-01-17 15:52     来源/作者:作图帮

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"))  #填充颜色

R语言绘制Vonoroi图的完整代码

#改变图形的形状
#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)

R语言绘制Vonoroi图的完整代码
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()

R语言绘制Vonoroi图的完整代码

#添加热图
ggplot(df, aes(x, y, fill = dist)) +
geom_voronoi() +
geom_point() +
scale_fill_gradient(low = "#20B2AA",
                    high = "#9370DB") #颜色

R语言绘制Vonoroi图的完整代码

#添加边界线
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图的资料请关注服务器之家其它相关文章!

原文链接:https://blog.csdn.net/weifanbio/article/details/118017171

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部