gpt4 book ai didi

r - 调整 ggplot2 中的 y 轴线位置

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

我正在尝试删除 y 轴线和绘图中第一个刻度线之间的空间。下面是一个例子:

set.seed(201)
n <- 100
dat <- data.frame(xval = (1:n+rnorm(n,sd=5))/20, yval = 2*2^((1:n+rnorm(n,sd=5))/20))
dat[dat[,1] < 0,1] <- 0
dat[dat[,2] < 0,2] <- 0

ggplot(dat, aes(xval, yval)) + geom_point()

此代码绘制一个图形,在 y 轴和 x 轴中的零刻度线之间有一个空格。我怎样才能删除它?

最佳答案

您可以使用 scale_x_continuous 更改此“差距”。功能:

ggplot(dat, aes(xval, yval)) + geom_point() + 
scale_x_continuous(expand=c(0,0))

来自 scale_x_continuous 上的帮助文件,

expand: numeric vector of length two giving multiplicative and additive expansion constants. These constants ensure that the data is placed some distance away from the axes.



要更改 y 轴上的空间,请使用 scale_y_continuous

关于r - 调整 ggplot2 中的 y 轴线位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12608616/

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