ggplot增加华夫饼图的大小

问题描述 投票:1回答:1

我有一个华夫饼图,看起来像这样:

enter image description here

使用此代码:

output$DS47<- renderPlot({
plot_tab6<-waffle(DS27$Prozent, rows=11)
  mydata <- c('Auslandsstudium'=57, 'Auslandspraktikum'=  30, 
              'Sprachkurs'=5, 'Studienreise'=11, 'Sonstige'=14 )
  plot_tab6 <- waffle(mydata, title = "lalalalal")
  return(plot_tab6)
})

但它很小,特别是传说。我怎样才能增加尺寸?

r ggplot2 size legend waffle-chart
1个回答
2
投票

我不知道华夫饼会返回一个ggplot对象。我使用这段代码解决了这个问题:

output$DS47<- renderPlot({
  mydata <- c('Auslandsstudium'=57, 'Auslandspraktikum'=  30, 'Sprachkurs'=5, 'Studienreise'=11, 'Sonstige'=14 )
  plot_tab6 <- waffle(mydata) +
    ggtitle("lalalala ?")+
    theme(plot.title = element_text(hjust = 0.5,size = 27, face = "bold", colour = "darkred"),
                              legend.text = element_text(size = 15))
  return(plot_tab6)
})
© www.soinside.com 2019 - 2024. All rights reserved.