gpt4 book ai didi

r - 在我的 geom_histogram 条形图之间添加空格,而不是条形图

转载 作者:行者123 更新时间:2023-12-02 08:26:26 24 4
gpt4 key购买 nike

假设我想制作直方图

所以我使用以下代码

v100<-c(runif(100))

v100
library(ggplot2)
private_plot<-ggplot()+aes(v100)+geom_histogram(binwidth = (0.1),boundary=0
)+scale_x_continuous(breaks=seq(0,1,0.1), lim=c(0,1))
private_plot

plot

如何分隔我的列以使整个内容更赏心悦目?

我尝试了这个,但不知何故不起作用:

Adding space between bars in ggplot2

谢谢

最佳答案

您可以使用 col 参数设置直方图条的线条颜色,并使用 fill< 参数设置填充颜色/ 参数。这并没有真正增加条之间的空间,但它使它们在视觉上不同。

library(ggplot2)
set.seed(9876)
v100<-c(runif(100))

### use "col="grey" to set the line color
ggplot() +
aes(v100) +
geom_histogram(binwidth = 0.1, fill="black", col="grey") +
scale_x_continuous(breaks = seq(0,1,0.1), lim = c(0,1))

生成此图:

enter image description here

请告诉我这是否是您想要的。

关于r - 在我的 geom_histogram 条形图之间添加空格,而不是条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44889334/

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