パッケージを使用してラインとバーチャットをプロットしようとしていggplot2
ますが、関数を使用すると2つの異なるy軸を取得するのは難しいようfacet_grid()
です...
現在のプロットに、データ フレーム内の各製品の頻度 (変数 Freq) を含む棒グラフを追加したいと思います。どんな助けでも本当に素晴らしいでしょう!!
temp = data.frame(Product=as.factor(c("L","P","41","43")),
Freq = c(0.2,0.8,0.7,0.3),
rate = c(14,17,12,20),
var= c("QUAL","QUAL","OCCU","OCCU"))
temp %>% ggplot() + theme_grey(base_size=20) +
geom_line(aes(x=Product, y=rate, group=var))+
geom_point(aes(x=Product, y=rate, group=var))+
geom_label( aes(x=Product,y=rate,label=paste0(rate,"%") )) +
facet_grid(.~ var, scales = "free") +
theme(legend.position="none", axis.text.x=element_text(angle=45, vjust=0.1)) -> p2