我不知道为什么在通过ggplot()
函数创建绘图时,图例没有出现。这是我的R代码:
ggplot(selected.cols) +
geom_density(aes(x = AGE),
colour = 'red', lwd = 1, fill = 'salmon', alpha = 0.5) +
geom_density(aes(x = AGE.1),
colour = 'black', lwd = 1, fill = 'deepskyblue', alpha = 0.5) +
ylab("gęstość") +
theme_minimal()
我阅读了与我类似的问题的解释,但我仍然不知道如何解决。请帮我。预先感谢。