バージョン 0.9ではggplot2
、プロット タイトルの配置の動作が変更されました。v0.8.9 では配置はプロット ウィンドウに対して相対的でしたが、v0.9 では配置はプロット グリッドに対して相対的です。
さて、私はこれが望ましい動作であることにほぼ同意しますが、非常に長いプロット タイトルを使用することがよくあります。
質問: プロット タイトルをプロット グリッドではなくプロット ウィンドウに合わせる方法はありますか?
プロットの自動配置を行うソリューションを探しています。言い換えれば、手動での位置合わせを使用してhjust
もうまくいきません (プロジェクトごとに何百ものプロットでこれを実行します)。
直接使用したソリューションgrid
も許容されます。
いくつかのサンプル コードとプロット: (タイトルがウィンドウの右側で切り捨てられることに注意してください)。
dat <- data.frame(
text = c(
"It made me feel very positive to brand X",
"It was clear and easy to understand",
"I didn't like it al all"),
value=runif(3)
)
library(ggplot2)
ggplot(dat, aes(text, value)) +
geom_bar(stat="identity") +
coord_flip() +
opts(title="Thinking about the ad that you've just seen, do you agree with the following statements? I agree that...") +
theme_bw(16)