我無法在ggplot上製作分組條形圖。我不知道如何在barplot上設置y軸。我已經嘗試了熔化()函數,但無法做到這一點。如何在ggplot分組條形圖上設置x-y軸?
x軸已經設好,現在我需要設置變量「ab」爲y軸。任何人都可以幫我嗎?
非常感謝,非常感謝!
dataset
ab estadio manejo
1 2506 Huevos mip
2 8616 Ninfas mip
3 229 Adultos mip
4 2183 Ninfas3-5 mip
5 134 Ninfaspar mip
6 1382 Huevos nomip
7 3481 Ninfas nomip
8 73 Adultos nomip
9 833 Ninfas3-5 nomip
10 na Ninfaspar nomip
> ggplot(mip,aes(x=estadio,fill=manejo, y=ab))+geom_bar(position="stack")+labs(title="MIP")
Error: stat_count() must not be used with a y aesthetic.
*2nd time
> df1<-melt(mip,id="ab")
Warning message:
attributes are not identical across measure variables; they will be dropped
> ggplot(df1,aes(estadio,ab,fill=manejo)) + geom_bar(position="stack") + labs(title="MIP")
Error in FUN(X[[i]], ...) : objeto 'estadio' no encontrado
使用'geom_col()'或'geom_bar(STAT = 「身份」)' – yeedle