[R]gplot 2 legend、axis
1163 ワード
座標軸
参照
http://blog.csdn.net/bone_ace/articale/details/47427453〓ラベル修正
コマンド
scale_x_conting ue(breaks=c(1:20)、labels=c(1:20)、limits=c(1、20)〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓区間の大きさを設定して、breaksは目盛りの位置を設定して、labelsは目盛りの位置を設定します。
凡例
参照
https://github.com/tidyverse/ggplot2/wiki/Legend-Attributes http://blog.csdn.net/bone_ace/article/details/47284805
コマンド
データ生成にはaes:geom uploid(aes(shop=factor(d$kind)、カラー=factor(d$kind)、size=3が必要です。
textを変更する:
fillパケットを通じて、scalefilludvicrete(labels=c('interaction effect'、'main effect')の色であれば、scaleucoloric('interaction effect')、'main effect'も必要です。
位置、サイズ、border、タイトルを変更します。
参照
http://blog.csdn.net/bone_ace/articale/details/47427453〓ラベル修正
コマンド
scale_x_conting ue(breaks=c(1:20)、labels=c(1:20)、limits=c(1、20)〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓区間の大きさを設定して、breaksは目盛りの位置を設定して、labelsは目盛りの位置を設定します。
凡例
参照
https://github.com/tidyverse/ggplot2/wiki/Legend-Attributes http://blog.csdn.net/bone_ace/article/details/47284805
コマンド
データ生成にはaes:geom uploid(aes(shop=factor(d$kind)、カラー=factor(d$kind)、size=3が必要です。
textを変更する:
fillパケットを通じて、scalefilludvicrete(labels=c('interaction effect'、'main effect')の色であれば、scaleucoloric('interaction effect')、'main effect'も必要です。
位置、サイズ、border、タイトルを変更します。
theme(
##no legend.title
legend.title = element_blank(),
## legend border
legend.box.background = element_rect( size = 1),
##legend inside, change relative positions by 0.95, 0.95
legend.position = c(.95, .95),
legend.justification = c("right", "top"),
legend.box.just = "right",
legend.margin = margin(6, 6, 6, 6),
##legend text setting
legend.text = element_text(size = 15)
)