ggplot 修改坐标轴名称
Posted 基督徒Isaac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ggplot 修改坐标轴名称相关的知识,希望对你有一定的参考价值。
- 添加xlab、ylab
- 添加labs
- 在标度处(如scale_x_continus)修改
来源:https://zhuanlan.zhihu.com/p/92473504
library(ggplot2)
library(gcookbook)
hwplot <- ggplot(heightweight, aes(x = ageYear, y = heightIn, colour = sex)) +
geom_ponit( )
hw_plot +
xlab("Age in years") +
ylab("Height in inches")
hw_plot +
labs(x = "New x", y = "New y")
hw_plot +
scale_x_continuous(name = "New x change by sclae")
以上是关于ggplot 修改坐标轴名称的主要内容,如果未能解决你的问题,请参考以下文章