我有以下情节,但我想在情节中的某个地方 - 最好在图例中包括描述性统计数据,例如均值、std.dev、峰度等??
问问题
259 次
1 回答
0
你可以这样做使用annotate
and capture.output
:
library(ggplot2)
data("iris")
m <- loess(Petal.Length ~ Sepal.Length, data = iris)
out <- capture.output(print(summary(m)))
out2 <- paste0(out[-1], "", collapse = "\n")
ggplot(iris, aes(Sepal.Length, Petal.Length)) +
geom_point() +
geom_smooth() +
annotate("text", label = out2, x = 4, y = 5, size = 6, hjust = 0)
请看下面的结果。
于 2018-06-15T08:49:02.153 回答