📜  如何在 R 中为 ggplot 添加标题?

📅  最后修改于: 2022-05-13 01:55:20.320000             🧑  作者: Mango

如何在 R 中为 ggplot 添加标题?

在本文中,我们将了解如何在 R 编程语言中为绘图添加标题。标题在数据可视化中非常重要,可以显示与图表相关的一些细节。

准备数据

为了绘制我们将使用的散点图,我们将使用 geom_point()函数。以下是有关 ggplot函数geom_point() 的简要信息。

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()函数的标题属性。

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"))

输出: