gpt4 book ai didi

r - 条形图中阴影线的宽度

转载 作者:行者123 更新时间:2023-12-04 03:09:30 26 4
gpt4 key购买 nike

我在 R 中使用以下脚本创建了一个条形图:

bars <- c(229, 158)
shading.lines <- c(83, 83)
years <- c("1985-89", "2017")
cols1 <- c("indianred4","green4")
cols2 <- c("green4","indianred4")
barplot(bars,names.arg=years,col=cols1)
barplot(shading.lines,names.arg=NA,col=cols2,density=11,add=T)

enter image description here

有没有办法调整阴影线的宽度?我想让它们更厚,以便在 1985-89 和 2017 年获得相同的阴影部分外观。

最佳答案

您可以使用 par(lwd=...) 调整阴影的宽度:

bars <- c(229, 158)
shading.lines <- c(83, 83)
years <- c("1985-89", "2017")
cols1 <- c("indianred4","green4")
cols2 <- c("green4","indianred4")
barplot(bars,names.arg=years,col=cols1)
# Set width of shading
par(lwd=5)
barplot(shading.lines,names.arg=NA,col=cols2,density=11,add=T)
# Set width of shading to the default value
par(lwd=1)

enter image description here

关于r - 条形图中阴影线的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46401312/

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