我有这样的数据
year month Avdischarge IndustrialCompound Pharmaceutical Pesticide TotalOvershootings
37 2018 1 740.5200 0.0000000 1.0000000 0.0000000 0.1578947
38 2018 2 376.8050 0.0000000 1.0000000 0.0000000 0.1428571
39 2018 3 269.2800 0.4285714 0.5714286 0.0000000 0.2800000
40 2018 4 195.8825 0.0000000 1.0000000 0.0000000 0.2105263
41 2018 5 100.9800 0.2500000 0.5833333 0.1666667 0.3243243
42 2018 6 99.5775 0.0000000 1.0000000 0.0000000 0.2105263
我首先绘制了放电图
q<- ggplot(data,aes(month, Avdischarge, group=1))+
geom_line(color='royalblue1', size=1.5, alpha=0.9))
现在我想scatterpie
在放电图上添加一个图
所以我做了这个
pieper<-q +
scatterpie::geom_scatterpie(aes(x=month, y=2, group=type, r = TotalOvershootings/0.5),
cols= c("IndustrialCompound", "Pharmaceutical", "Pesticide"),alpha= 0.7, color=NA,data= data)
但我明白了
我已经把它改成了r
每一个可能的数字,但是我没有正确地得到馅饼(如图所示)。当我更改 r 时,馅饼会变大,但总是作为一条线,或者消失。
我可以添加什么,以便获得正确比例的饼图?