Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロットのタイトルをプロットの右端に揃えようとしています。
明確にするために、次の例では、プロットのタイトルが中央に揃えられています。
op <- par(mfrow=c(2, 2)) hist(islands) utils::str(hist(islands, col="gray", labels = TRUE))
メインタイトルとグラフィカルパラメータadjに別々の関数を使用します。
op <- par(mfrow=c(2, 2)) hist(islands,main=NULL) title("Histogram of islands",adj=1) utils::str(hist(islands, col="gray", labels = TRUE,main=NULL)) title("Histogram of islands",adj=1)