好的标签对于让更广泛的受众能够理解您的情节至关重要。始终确保轴和图例标签显示完整的变量名称。使用图 title
和 subtitle
来解释主要发现。通常使用caption
来提供有关数据源的信息。 tag
可用于添加识别标签以区分多个图。
用法
labs(
...,
title = waiver(),
subtitle = waiver(),
caption = waiver(),
tag = waiver(),
alt = waiver(),
alt_insight = waiver()
)
xlab(label)
ylab(label)
ggtitle(label, subtitle = waiver())
参数
- ...
-
新name-value 对的列表。名字应该是有美感的。
- title
-
标题的文字。
- subtitle
-
绘图副标题的文本将显示在标题下方。
- caption
-
默认情况下,标题文本将显示在绘图的右下角。
- tag
-
默认情况下,标签标签的文本将显示在绘图的左上角。
- alt, alt_insight
-
用于生成绘图alt-text 的文本。有关示例,请参阅get_alt_text。
- label
-
相应轴的标题(对于
xlab()
或ylab()
)或绘图的标题(对于ggtitle()
)。
细节
您还可以在各个比例中设置轴和图例标签(使用第一个参数 name
)。如果您要更改其他比例选项,建议这样做。
如果绘图已有标题、副标题、说明文字等,并且您想将其删除,则可以通过将相应参数设置为 NULL
来实现。例如,如果图 p
有副标题,则 p + labs(subtitle = NULL)
将从图中删除副标题。
例子
p <- ggplot(mtcars, aes(mpg, wt, colour = cyl)) + geom_point()
p + labs(colour = "Cylinders")
p + labs(x = "New x label")
# The plot title appears at the top-left, with the subtitle
# display in smaller text underneath it
p + labs(title = "New plot title")
p + labs(title = "New plot title", subtitle = "A subtitle")
# The caption appears in the bottom-right, and is often used for
# sources, notes or copyright
p + labs(caption = "(based on data from ...)")
# The plot tag appears at the top-left, and is typically used
# for labelling a subplot with a letter.
p + labs(title = "title", tag = "A")
# If you want to remove a label, set it to NULL.
p +
labs(title = "title") +
labs(title = NULL)
相关用法
- R ggplot2 label_bquote 带有数学表达式的标签
- R ggplot2 labeller 构建标签规范
- R ggplot2 labellers 有用的贴标机函数
- R ggplot2 layer 创建一个新层
- R ggplot2 lims 设置规模限制
- R ggplot2 annotation_logticks 注释:记录刻度线
- R ggplot2 vars 引用分面变量
- R ggplot2 position_stack 将重叠的对象堆叠在一起
- R ggplot2 geom_qq 分位数-分位数图
- R ggplot2 geom_spoke 由位置、方向和距离参数化的线段
- R ggplot2 geom_quantile 分位数回归
- R ggplot2 geom_text 文本
- R ggplot2 get_alt_text 从绘图中提取替代文本
- R ggplot2 annotation_custom 注释:自定义grob
- R ggplot2 geom_ribbon 函数区和面积图
- R ggplot2 stat_ellipse 计算法行数据椭圆
- R ggplot2 resolution 计算数值向量的“分辨率”
- R ggplot2 geom_boxplot 盒须图(Tukey 风格)
- R ggplot2 geom_hex 二维箱计数的六边形热图
- R ggplot2 scale_gradient 渐变色阶
- R ggplot2 scale_shape 形状比例,又称字形
- R ggplot2 geom_bar 条形图
- R ggplot2 draw_key 图例的关键字形
- R ggplot2 annotate 创建注释层
- R ggplot2 annotation_map 注释:Map
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Modify axis, legend, and plot labels。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。