gpt4 book ai didi

r - 如何更改ggplot中的默认美感?

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

假设我更喜欢 geom_point默认情况下使用圆圈 ( pch=1 ) 而不是实心圆点 ( pch=16 )。您可以通过传递 shape 来更改标记的形状。论据 geom_point ,例如

ggplot(diamonds, aes(depth, carat, colour=cut)) + geom_point(shape=1)
ggplot(diamonds, aes(depth, carat, colour=cut)) + geom_point(shape=16)

但我不知道如何更改默认行为。

最佳答案

Geom(和 stat)默认值可以直接更新:

update_geom_defaults("point", list(shape = 1))
ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point()

enter image description here

关于r - 如何更改ggplot中的默认美感?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14196804/

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