在 R 中的 ggplot2 图中删除轴标签和刻度
在本文中,我们将讨论如何在 R 编程语言中删除 ggplot2 中的轴标签和刻度。
可以使用 theme() 方法在 ggplot 中删除轴标签和刻度。该方法主要用于修改制作图的非数据成分。它为绘图提供了良好的图形自定义外观。 theme() 方法用于处理绘图的标签、刻度和文本。标签和刻度与 element_blank() 方法对齐,以便删除它们。
句法 :
theme(axis.text.x = , axis.ticks.x = , axis.text.y = , axis.ticks.y = )
论据:
- axis.text.x , axis.text.y = 沿轴的刻度标签
- axis.ticks.x, axis.ticks.y = 沿轴的刻度标签
R
# creating data frame
col1 = c(1: 10)
col2 = c(11: 20)
print("X coordinates")
print(col1)
print("Y coordinates")
print(col2)
# plotting the data frame
graph < - ggplot(df, aes(x=col1, y=col2)) +
geom_point()
# removing axes labels and ticks
graph +
theme(axis.text.x=element_blank(),
axis.ticks.x=element_blank(),
axis.text.y=element_blank(),
axis.ticks.y=element_blank())
# printing the graph
print(graph)
输出
[1] "X coordinates"
[1] 1 2 3 4 5 6 7 8 9 10
[1] "Y coordinates"
[1] 11 12 13 14 15 16 17 18 19 20
说明: x 和 y 轴标记和刻度线已通过将它们设置为 element_blank() 方法从图中删除。