當我運行下面的代碼時,將創建一個密度圖和直方圖。我添加了兩條垂直線以顯示平均值和中位數。我想在圖的右上角顯示一個圖例(紅色爲「Mean」,綠色爲「Median」)。您可以運行此代碼,因爲df已經在R-studio中可用。ggplot2手冊中的圖例
ggplot(USArrests,aes(x=Murder)) +
geom_histogram(aes(y=..density..),binwidth=.5,col="black",fill="white") +
geom_density(alpha=.2,fill="coral") +
geom_vline(aes(xintercept=mean(Murder,na.rm=T)),color="red",linetype="dashed",size=1) +
geom_vline(aes(xintercept=median(Murder,na.rm=T)),color="green",size=1)
我的問題是我應該使用theme()或其他在我的情節中顯示圖例嗎?