私は現在igraphを使用しており、頂点にカラーラベルを付けています。各色が何を表すかを示す凡例を追加したいと思います。
この時点で私が考えることができるのは、ggplot2を使用して凡例のみを印刷し、棒グラフを非表示にすることです。凡例を出力する方法はありますか?
ここに2つのアプローチがあります:
library(ggplot2)
library(grid)
library(gridExtra)
my_hist <- ggplot(diamonds, aes(clarity, fill = cut)) +
geom_bar()
# Using the cowplot package
legend <- cowplot::get_legend(my_hist)
grid.newpage()
grid.draw(legend)
恥知らずに盗まれたもの: ggplot2ヒストグラムの凡例の下にテーブルを挿入
## Function to extract legend
g_legend <- function(a.gplot){
tmp <- ggplot_gtable(ggplot_build(a.gplot))
leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
legend <- tmp$grobs[[leg]]
legend
}
legend <- g_legend(my_hist)
grid.newpage()
grid.draw(legend)
reprexパッケージ (v0.2.0)によって2018-05-31に作成されました。
カウプロットは、凡例を抽出する機能を簡単に追加します。以下はマニュアルから直接取られたものです。
library(ggplot2)
library(cowplot)
p1 <- ggplot(mtcars, aes(mpg, disp)) + geom_line()
plot.mpg <- ggplot(mpg, aes(x = cty, y = hwy, colour = factor(cyl))) + geom_point(size=2.5)
# Note that these cannot be aligned vertically due to the legend in the plot.mpg
ggdraw(plot_grid(p1, plot.mpg, ncol=1, align='v'))
# now extract the legend
legend <- get_legend(plot.mpg)
# and replot suppressing the legend
plot.mpg <- plot.mpg + theme(legend.position='none')
# Now plots are aligned vertically with the legend to the right
ggdraw(plot_grid(plot_grid(p1, plot.mpg, ncol=1, align='v'),
plot_grid(NULL, legend, ncol=1),
rel_widths=c(1, 0.2)))
私はggpubrパッケージを使用しました-とても簡単になりました!
https://rpkgs.datanovia.com/ggpubr/reference/get_legend.html
# Extract the legend. Returns a gtable
leg <- get_legend(p)
# Convert to a ggplot and print
as_ggplot(leg)
私はグラフの頂点を色分けしていて、凡例をできるだけ簡単に、エレガントに、そしてできるだけ早く生成したいと考えていました。
これを行う最も速い方法は、viewport
およびlayout()
を使用して、igraphと同じプロットに凡例を「貼り付ける」前に、ggplot2を使用して凡例を個別に生成することです。
このメソッドでは、plot.igraph()
関数でrescale
またはasp
引数を呼び出す必要はありません。
2列のdata.frame、leg
でg_legend関数を使用します。xは適切な頂点属性で、yはigraphプロットで使用される16進数のカラーコードです。以下を実行しました。
私のigraphオブジェクトはt8g
legend <- g_legend(leg)
vpleg <- viewport(width = 0.1, height = 0.1, x=0.85,y=0.5)
layout(matrix(c(1,2),1,2,byrow=T),widths=c(3,1))
plot(t8g,Edge.width=1,Edge.arrow.size=0.1,vertex.label.cex=0.2,main="b2_top10")
pushViewport(vpleg)
grid.draw(legend)