ggplot中如何去除纵坐标标签
时间: 2023-11-24 10:05:21 浏览: 139
ExtJs纵坐标值重复问题的解决方法
可以使用 `theme()` 函数中的 `axis.text.y = element_blank()` 来去除纵坐标标签。具体代码如下:
```R
library(ggplot2)
# 创建示例数据
data <- data.frame(x = 1:5, y = c(2, 3, 1, 4, 5))
# 绘制图形并去除纵坐标标签
ggplot(data, aes(x, y)) +
geom_point() +
theme(axis.text.y = element_blank())
```
运行后,就会得到去除了纵坐标标签的散点图。
阅读全文