gpt4 book ai didi

r - ggplot绘图区域顶部和底部的线条

转载 作者:行者123 更新时间:2023-12-05 06:30:08 25 4
gpt4 key购买 nike

我想在使用 ggplot2 创建的图的顶部和底部添加一条线(x 标签和轴下方的底线)。到目前为止,我已经在绘图周围添加了一个矩形,但我不想要两侧的线条。

x <- 1:10
y <- rnorm(10,mean = x)
df <- data.frame(x,y)
library(ggplot2)
ggplot(data = df, mapping = aes(x,y)) + geom_point() +
theme(plot.background = element_rect(size = 1, color = 'blue'))

希望大家有解决办法。

最佳答案

会不会类似于this工作?

x <- 1:10
y <- rnorm(10,mean = x)
df <- data.frame(x,y)
ggplot(data = df, mapping = aes(x,y)) + geom_point() +
annotate(geom = 'segment',
y = Inf,
yend = Inf,
x = -Inf,
xend = Inf,
size = 2) +
theme(axis.line.x = element_line(size = 1))

enter image description here

关于r - ggplot绘图区域顶部和底部的线条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52815983/

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