gpt4 book ai didi

删除 ggplot2 中的绘图边距

转载 作者:行者123 更新时间:2023-12-03 10:42:54 27 4
gpt4 key购买 nike

我正在尝试在 R 中使用 ggplot2 和 ggsave(与开罗)生成一个 png 图表。我在自定义主题以删除边距时遇到问题。

目前我正在使用:

... + theme(plot.margin=unit(c(0,0,0,0),"mm"))      

这似乎适用于我的情节的四个边中的两个,它完全删除了顶部和右侧的边距,但左侧和底部仍然有相当大的边距。有没有办法完全去除这些?下图说明问题:

enter image description here

如果一个可重现的例子有用,那么请告诉我,我会把一个放在一起。

编辑:
library("ggplot2")
library("scales")
library("Cairo")
library("grid")

# Set chart values
line.width = 0.45
axis.font.size = 2.9

# Generate some random data
start.date <- as.Date("2011-07-01")
x.month <-seq.Date(start.date, by = "month", length.out = 24)
end.date <- max(x.month)

period.a <- rnorm(12, mean=50, sd=2)
period.b <- rnorm(12, mean=55, sd=2)

x.value <- c(period.a,period.b)

# Combine into dataframe
x.data <- data.frame(
"Month" = x.month,
"Value" = x.value
)

# Build chart
p <- ggplot(data=x.data, aes(Month, Value)) + geom_line(size=line.width)
p <- p + theme_bw()
p <- p + scale_y_continuous()
p <- p + scale_x_date(limits=c(start.date+20,end.date-20), breaks = "1 month",labels = date_format("%b-%y"))
p <- p + theme(axis.text.x=element_text(angle=90, hjust=1, vjust=0.5, size=axis.font.size),
axis.text.y=element_text(size=axis.font.size),
axis.title.x=element_blank(),
axis.title.y=element_blank(),
plot.margin=unit(c(0,0,0,0),"mm"),
plot.background = element_rect(fill = "grey"),
panel.grid=element_blank(),
panel.border=element_rect(size=line.width/2),
axis.ticks=element_line(size=line.width/3),
axis.ticks.length=unit(0.3, "mm"),
axis.ticks.margin=unit(0.2, "mm"))

ggsave(file="c:\\temp\\test.png", plot=p, width=40, height=15, units="mm", type ="cairo-png")

最佳答案

根据 the source code ,您还需要将标签设置为 NULL,

last_plot() + labs(x=NULL, y=NULL)

或者,设置 unit(-0.5, "line")用于底部和左边距。

关于删除 ggplot2 中的绘图边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17786197/

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