ggplot2のレジェンド位置を変えるには Cookbookの Changing the position of the legend が参考になる. 要は theme() を使って legend.position を長さ2の数値ベクトルないし"none" , "left" , "right" , "bottom" , "top" の文字列で与え, legend.justification を長さ2の数値ベクトルないし"center" の文字列で与えれば いいわけだが,早見表が欲しい. パッケージ tidyverseからはggplot2の他にdplyr, purrrを使う.また,図を並べるためにはpatchworkを使う. patchworkについては私のTokyo R 73での発表スライドを参考にしてほしい. library(tidyverse) library(patchwork) 基