R语言在可视化图像中添加文本(Adding Text to plot)
创建一个好的可视化包括引导读者,使用图形讲述一个直观的故事。在某些情况下,这个故事可以以完全直观生动的方式呈现,而不需要添加文本,但在其他情况下,小的文本线索和标签是必要的。也许您将使用的最基本的注释类型是轴、标签和标题,但选项不止于此。让我们来看看一些数据,以及如何对其进行可视化和注释,以帮助传达有趣的信息。
# 添加文本的各种套路,,,,
# Split the screen using the layout function
layout(matrix(c(1,1,2,2), 2, 2, byrow = T), heights = c(4,1))
# plot the figure
plot(rnorm(10),ylab="", xlab="Use the xlab argument", main="Use the title", ty="o", pch=19)
# Add text
mtext("Use the mtext() function")
temp <- locator(1) # On the chart, click where you would like the text to appear
# text(temp,"Use the text() with or without the loc