gpt4 book ai didi

r - ggplot2 ggsave 文本大小没有改变

转载 作者:行者123 更新时间:2023-12-03 17:50:06 27 4
gpt4 key购买 nike

我在更改 ggplot2 的标题大小、X-Y 标签、X-Y 轴文本时遇到问题.我正在使用 ggsave将绘图保存为 jpg。

p <- ggplot()
p + theme(axis.title = element_text(size=30), axis.text.y = element_text(size=30),
axis.text.x = element_text(size=30))

但是改变这些文本的大小不会改变情节上的任何东西。有谁知道如何正确更改文字大小?

所以我解决了我遇到的问题,所以我对主题所做的更改不会影响情节(我已经测试过更改文本颜色),但是轴文本的大小仍然没有改变。
p <- ggplot(d[d$user==i,], aes(x=date, y=url, group=user, label=user)) + geom_line() + geom_point() +
labs(list(title=i, x="Date and Time", y = "URL")) + # Plot labels
axis.POSIXct(1, at=seq(daterange[1], daterange[2], by="hour")) # Set x axis range to first and last date-time in data
p <- p + modifiedtheme
ggsave(plot = p, filename = "sample.jpg", height=2, width=6)

最佳答案

这是问题的一个最小的、完全可重现的版本(或没有任何问题,正如评论所指出的那样)。您自己发布的代码似乎是正确的,但也许这个例子可以帮助您解决真正的问题:

library(ggplot2)

p1 = ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, colour=Species)) +
geom_point()

p2 = ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, colour=Species)) +
geom_point() +
theme(axis.title=element_text(size=30))

ggsave("figure1.jpg", plot=p1, height=3, width=4, units="in", dpi=150)
ggsave("figure2.jpg", plot=p2, height=3, width=4, units="in", dpi=150)

enter image description here

关于r - ggplot2 ggsave 文本大小没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30585651/

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