gpt4 book ai didi

r - ggplot增加边界线粗细

转载 作者:行者123 更新时间:2023-12-04 12:05:22 27 4
gpt4 key购买 nike

如何增加蓝色边框线的粗细?在下面的示例中,忽略stroke参数。

library(tidyverse)
ggplot(mpg, aes(cty, hwy)) +
geom_col(color = "blue", stroke = 2)

最佳答案

希望这对您有用:

ggplot(mpg, aes(cty, hwy,fill="snow")) + 
geom_bar(color = "navy",size=0.05,stat="identity",alpha=0.3)


结果:
enter image description here

然后改变尺寸的美感:

ggplot(mpg, aes(cty, hwy,fill="snow")) + 
geom_bar(color = "navy",size=2,stat="identity",alpha=0.3)


产生此:
enter image description here

关于r - ggplot增加边界线粗细,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53240397/

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