にggplot2形状の注釈を配置:私はタイトル/サブタイトルに図形を挿入(および塗りつぶしの色)しようとしていますが、そうする構文を見つけることができないタイトル
library(tidyverse)
D <-diamonds %>% filter(color=="D") %>%sample_frac(0.1)
G <-diamonds %>% filter(color=="G") %>% sample_frac(0.1)
ggplot(D, aes(x=carat, y=price))+
geom_jitter(data=G)+geom_point(shape=6)+
geom_jitter(data=D)+geom_point(shape=22, fill='red')+
labs(title, "This is a title",
subtitle=
"D diamonds (insert shape 22 fill red) and G diamonds (shape 6 color black)",
caption = "what I want is to insert the shape and fill color into the (sub)title")
提案を?アノテーションは、プロット空間でのみ動作するように設計されているようです。
伝説を作って、タイトルの左下まで回避することができますか? – aosmith