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.
この質問は、方程式をggplot2qplotに入れる方法を示しています。
q <- qplot(cty, hwy, data = mpg, colour = displ) q + xlab(expression(beta +frac(miles, gallon)))
空のキャンバスにラベルを追加できるように、空のggplot2プロットを作成するにはどうすればよいですか?
df <- data.frame() ggplot(df) + geom_point() + xlim(0, 10) + ylim(0, 100)
@ilyaの推奨に基づいており、geom_blankすでにデータがあり、明示的に定義するのではなく、それに基づいてスケールを設定できる場合に最適です。
geom_blank
ggplot(mtcars, aes(x = wt, y = mpg)) + geom_blank()