gpt4 book ai didi

r - 在 ggplot2 中围绕一系列点放置边界

转载 作者:行者123 更新时间:2023-12-03 21:58:56 28 4
gpt4 key购买 nike

我有一系列要在其周围放置边界的点。我该怎么办?

这些是我的观点:
enter image description here

我试过 geom_line 但这显然是错误的,因为它产生了这个!

enter image description here

谢谢

最佳答案

使用 geom_path而不是 geom_line .下面是一个例子:

i <- seq(0, 2*pi, length.out=50)
dat <- data.frame(x=cos(i), y=sin(i))

library(ggplot2)
ggplot(dat, aes(x, y)) + geom_line()

enter image description here
ggplot(dat, aes(x, y)) + geom_path()

enter image description here

关于r - 在 ggplot2 中围绕一系列点放置边界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12603006/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com