我使用下面的代碼忽略傳奇冠軍,但我的指揮實驗室(填寫=「類」)應該設置圖例標題爲「類」被忽略:實驗室()命令來設置由ggplot
ggplot(data_Test, aes(x = predictions_plain, fill = as.factor(income_Class),
color = as.factor(income_Class))) +
geom_histogram(aes(y=..density..), position="identity",alpha = 0.4) +
guides(color = FALSE)
geom_density (alpha = 0.5)+
labs(title = "Predicted Probabilities per Class in the Test Dataset",
x = "Predicted Probability of being in Class1", y = "Count") +
labs(fill = "Class")
您的建議將不勝感激。
爲什麼有兩個獨立的'實驗室()'電話?你有沒有嘗試將'fill ='Class''移動到與其他標題相同的調用中? – Marius
另外我覺得你在'guides(color = FALSE)'後面缺少'+'。這意味着後面的所有命令都不會應用於繪圖。 – Marius