一段时间以来,我一直试图解决这一问题,但似乎无法在网上找到任何能说明问题的信息(我对R-studio还是很陌生)。
我为不同种类的麻雀绘制了两个单独的图,给出了两个单独的图(一个红色和一个金色)。我想将它们结合在一起以在单个ggplot中显示红色和金色线条以进行比较:
ggplot(sparrow_nd_sw, aes(position, spanish)) + geom_line(colour = "red") +
theme_light()
ggplot(sparrow_nd_sw, aes(position, italian)) + geom_line(colour = "gold") +
theme_light()
#This has been tried:
ggplot(sparrow_nd_sw, aes(position)) +
geom_line(aes(y = spanish, colour = "red")) +
geom_line(aes(y = italian, colour = "gold"))
#But the colors are all wrong :/
非常感谢您的帮助!