gpt4 book ai didi

修改 x 轴上的刻度数?

转载 作者:行者123 更新时间:2023-12-01 12:26:59 25 4
gpt4 key购买 nike

我只有一串数字,我想统计每个元素的个数。这是我做过的事情。 X 轴是我的元素,Y 轴是每个元素的编号。

enter image description here

我的问题是,如何修改 x 轴的表示方式?我只想在轴上看到 0.4、0.5、0.6、0.7、0.8 和 0.9,但仍要保持图中的条数相同(没有变化)。有什么建议吗?

d1 <- ggplot(TestData, aes(factor(TestData$Col1)))
d2 <- d1 + geom_bar() + xlab("") + ylab("")

最佳答案

创建均值为 0.5、标准差为 0.2 的数据:

data<- rnorm(1000,0.5,0.2)
dataf <- data.frame(data)

为所有数据范围制作直方图:

ggplot(aes(x = data),data = dataf) +
geom_histogram()

enter image description here

Xlim 到 0.4 到 0.9:

ggplot(aes(x = data),data = dataf) +
geom_histogram() +
scale_x_continuous(limits = c(0.4,0.9),
breaks= scales::pretty_breaks(n=5))

enter image description here

关于修改 x 轴上的刻度数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38438989/

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