gpt4 book ai didi

圆线端geom_smooth

转载 作者:行者123 更新时间:2023-12-04 08:51:08 25 4
gpt4 key购买 nike

如何为 geom_smooth 制作圆形线端?因为没有 lineend 参数,geom_smooth(lineend = "round") 显然失败了。我也试过了:

update_geom_defaults("smooth", list(lineend = "round"))

所以要么有一些我不知道的简单选项,要么 lineend 是硬编码的,因此需要想出一个自定义的 geom_smooth 函数,我不知道该怎么做。

不要认为它需要 MRE,但是:

library(ggplot2)
dat = data.frame(x = 1:3, y = 2:4)
ggplot(dat, aes(x, y)) + geom_smooth(size = 4) # increase size to discern lineends

最佳答案

这可以使用 stat_smooth 实现:

library(ggplot2)

dat = data.frame(x = 1:3, y = 2:4)

ggplot(dat, aes(x, y)) + stat_smooth(size = 4, geom = "line", lineend = "round", color = "blue")

关于圆线端geom_smooth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64100639/

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