2017-08-27 8 views
0

伝説にタイトルがない場合は、伝説の周りをよりタイトにしたいと思っています。そのままで、凡例キーの上に空白があります。私はまた、境界線が点線であることを望んでいます。タイトルなしタイトな伝説の国境

ggplot2

プロットは、次のコードに基づいています:リチャード・テルフォードはlegend.title = element_blank()を設定し、コメントで述べたように

library(ggplot2) 
ggplot(temp, aes(x=diff_abs, y=emp_est_15, color=diff_sign)) + geom_point(shape=1, size=2) + 
    scale_colour_manual(values=c("green4", "red")) + 
    scale_x_log10(breaks=10^(0:3)) + scale_y_log10(breaks=c(c(2,4,8) %o% 10^(0:3))) + 
    theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), 
     panel.background = element_blank(), axis.line = element_line(colour = "black"), 
     axis.text = element_text(color="black", size=13), axis.title = element_text(color="black", size=13), 
     legend.key = element_blank(), legend.position=c(.2,.8), legend.box.background = element_rect(), 
     legend.background = element_blank()) + 
    labs(x="\nGain ou perte d'emploi 2001-2015 (milliers, échelle log 10)", 
     y="Emploi 2015 (milliers, échelle log 10)\n", color="") 
+2

で変更することができますか? 'テーマ(legend.title = element_blank())' –

答えて

3

凡例タイトル&の占有スペースを削除しますので、伝説の「締め」ボックス。

凡例ボックスの境界線のタイプがlegend.box.background = element_rect(line = <some number other than 1>)

# example using mtcars dataset 
p <- ggplot(mtcars, aes(wt, mpg, col = factor(cyl))) 
p + geom_point() + 
    theme_bw() + 
    theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), 
     panel.background = element_blank(), 
     legend.key = element_blank(), legend.position=c(.8,.8), 
     legend.title = element_blank(), 
     legend.box.background = element_rect(line = 3), 
     legend.background = element_blank()) 

enter image description here