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.
棒グラフ (ggplot2、geom_bar を使用) がありますが、x 軸のラベルが長すぎて重なっています。そのままにしておきたいのですが、横にも(縦にも斜めにも)置いてほしいです。長いラベルを複数 (少なくとも 2 つ) の行にラップする方法はありますか?
私はggplot直接通り抜ける方法を知りません。ただし、次のようなことができます。
ggplot
ggplot(data.frame(x=1:10, y=1:10), aes(x,y)) + geom_point() + labs(x='really long label \n with a return')
軸ラベルを使用して、選択した長さで折り返すことができます。