gpt4 book ai didi

r - X 轴标签在 ggplot2 中被截断

转载 作者:行者123 更新时间:2023-12-04 01:58:31 30 4
gpt4 key购买 nike

我的电子信件的标签被剪掉了。你知道我该如何解决这个问题吗?

代码:

library(ggplot2)

p<-ggplot(data=english, aes(x=V1, y=V3))+
geom_bar(stat="identity", fill="steelblue") +
labs(x="Letter", y="Frequency") +
geom_text(aes(label=V3), vjust=0.4, hjust=-0.1, size=3.5)
p + coord_flip()

图表:

enter image description here

最佳答案

在ggplot中使用y轴的ylim选项(因为后面要用到coord_flip)定义,像这样

scale_y_continuous(limits = c(min(english[,"V3"]), max(english[,"V3"])+5)

关于r - X 轴标签在 ggplot2 中被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49000496/

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