text ggplot2 vjust hjust标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text ggplot2 vjust hjust标签相关的知识,希望对你有一定的参考价值。
td <- expand.grid(
hjust=c(0, 0.5, 1),
vjust=c(0, 0.5, 1),
angle=c(0, 45, 90),
text="text"
)
ggplot(td, aes(x=hjust, y=vjust)) +
geom_point() +
geom_text(aes(label=text, angle=angle, hjust=hjust, vjust=vjust)) +
facet_grid(~angle) +
scale_x_continuous(breaks=c(0, 0.5, 1), expand=c(0, 0.2)) +
scale_y_continuous(breaks=c(0, 0.5, 1), expand=c(0, 0.2))
以上是关于text ggplot2 vjust hjust标签的主要内容,如果未能解决你的问题,请参考以下文章
R语言ggplot2可视化使用vjust和hjust参数对齐图像中的文本注释信息(左对齐右对齐居中)实战
使用 ggplot 绘制绘图时,hjust 和 vjust 做了啥?
是否有功能在R中执行类似于hjust / vjust或position_dodge的操作?
如何在ggplot2的注释中左对齐文本
热图一
当角度在 45 到 90 之间时,如何更正 x 轴文本的位置?