最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

R語(yǔ)言繪制Vonoroi圖的完整代碼

 更新時(shí)間:2021年06月20日 15:52:54   作者:作圖幫  
今天來(lái)給大家分享一篇教程關(guān)于R語(yǔ)言繪制Vonoroi圖的完整代碼,包括deldir包繪制Voronoi圖,ggplot2繪制Voronoi圖的實(shí)現(xiàn)代碼,感興趣的朋友跟隨小編一起看看吧

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, #是否顯示點(diǎn)
     fillcol = hcl.colors(60, "Sunset"))  #填充顏色

在這里插入圖片描述

#改變圖形的形狀
#install.packages("polyclip")
library(polyclip)
# Circle環(huán)狀
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") # 去掉右側(cè)圖例標(biāo)簽

在這里插入圖片描述

以上就是R語(yǔ)言繪制Vonoroi圖的詳細(xì)內(nèi)容,更多關(guān)于R語(yǔ)言繪制Vonoroi圖的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評(píng)論

长岛县| 望都县| 新田县| 德阳市| 兴山县| 紫金县| 抚远县| 托克托县| 安龙县| 南华县| 重庆市| 化隆| 昭通市| 赣榆县| 涞源县| 通江县| 新绛县| 金寨县| 伊宁县| 拜泉县| 福州市| 渭南市| 新建县| 新昌县| 长岛县| 建湖县| 古田县| 齐河县| 兴仁县| 布拖县| 曲周县| 维西| 广宗县| 同仁县| 抚宁县| 岳西县| 泉州市| 姜堰市| 金秀| 图木舒克市| 汝州市|