ggplot2:在一幅图中插入另外一幅图

2020-03-02 16:38:07 浏览数 (1)

需求

我用ggplot2做了两幅图:

  • 柱形图
代码语言:javascript复制
library(ggplot2)
df<-data.frame(x=LETTERS[1:10],y=10:1)
df
ggplot() 
  geom_bar(data=df,aes(x=x,y=y,fill=x),
           stat="identity") theme_bw() 
  theme(legend.position = "none")

image.png

  • 饼图
代码语言:javascript复制
ggplot() 
  geom_bar(data=df[1:5,],aes(x="",y=y,fill=x),
           stat="identity") theme_bw() 
  coord_polar("y",start=0) 
  theme_bw() 
  theme(axis.title = element_blank(),
        axis.text = element_blank(),
        legend.position = "none",
        panel.border = element_blank(),
        panel.grid = element_blank()) 
  scale_fill_brewer(palette="Set1")

image.png

我现在想要把饼图放到柱形图的右上角

如何实现? 找到了函数

  • ggplotGrob()
  • annotation_custom() 完整代码
代码语言:javascript复制
library(ggplot2)
df<-data.frame(x=LETTERS[1:10],y=10:1)
df
p1<-ggplot() 
  geom_bar(data=df,aes(x=x,y=y,fill=x),
           stat="identity") theme_bw() 
  theme(legend.position = "none")

p2<-ggplot() 
  geom_bar(data=df[1:5,],aes(x="",y=y,fill=x),
           stat="identity") theme_bw() 
  coord_polar("y",start=0) 
  theme_bw() 
  theme(axis.title = element_blank(),
        axis.text = element_blank(),
        legend.position = "none",
        panel.border = element_blank(),
        panel.grid = element_blank()) 
  scale_fill_brewer(palette="Set1")
g<-ggplotGrob(p2)
p1 annotation_custom(g,xmin=5,xmax=12,ymin=5,ymax=10)

image.png

另外的小知识点

ggplot2去掉边框和底纹

代码语言:javascript复制
theme(panel.border = element_blank(),
        panel.grid = element_blank())

0 人点赞