Quantcast
Channel: グラフ - 廿TT
Viewing all articles
Browse latest Browse all 123

ggplot2 で欠けた円グラフ

$
0
0

久しぶりに円グラフを描きたくなった。

100% に満たない量を表す欠けた円グラフ。

f:id:abrahamcow:20170105071723p:plain

library(cowplot)
dat<-data.frame(group=LETTERS[1:2],y=c(0.7,0.4))
ggplot(dat)+
  geom_bar(aes(x=group,y=y*100),width=100,stat ="identity")+
  ylim(c(0,100))+
  facet_wrap(~group)+
  coord_polar(theta ="y")+
  theme(axis.text.y = element_blank(),axis.ticks.y = element_blank())+
  xlab("")+ylab("")

円グラフの条件つき復権、つづき - macroscope


Viewing all articles
Browse latest Browse all 123

Trending Articles