如何在 R 中为 ggplot 添加标题?
在本文中,我们将了解如何在 R 编程语言中为绘图添加标题。标题在数据可视化中非常重要,可以显示与图表相关的一些细节。
准备数据
为了绘制我们将使用的散点图,我们将使用 geom_point()函数。以下是有关 ggplot函数geom_point() 的简要信息。
Syntax : geom_point(size, color, fill, shape, stroke)
Parameter :
- size : Size of Points
- color : Color of Points/Border
- fill : Color of Points
- shape : Shape of Points in in range from 0 to 25
- stroke : Thickness of point border
- Return : It creates scatterplots.
R
# import lib
library(ggplot2)
# plot datapoint using iris
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point()
R
library(ggplot2)
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point()+
# adding caption and subtitle
labs(subtitle="Scatter plot",
caption="Geeksforgeeks"
)
R
library(ggplot2)
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point()+
# adding caption and subtitle
labs(subtitle="Scatter plot - Examples",
caption="Geeksforgeeks")+
# size of the caption
theme(plot.caption= element_text(size=15,
color="Green"))
输出:
为绘图添加标题
要添加标题,我们将使用来自 labs()函数的标题属性。
Syntax: labs(caption)
Parameters:
- caption: String caption
R
library(ggplot2)
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point()+
# adding caption and subtitle
labs(subtitle="Scatter plot",
caption="Geeksforgeeks"
)
输出:
自定义字幕文本
element_text()方法可用于自定义图中的标题
R
library(ggplot2)
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point()+
# adding caption and subtitle
labs(subtitle="Scatter plot - Examples",
caption="Geeksforgeeks")+
# size of the caption
theme(plot.caption= element_text(size=15,
color="Green"))
输出: