我希望我的图表看起来像这样(请关注图例的布局):
我已尝试使用此代码,但传说看起来并不完全相同。
ggplot(mpg, aes(displ, hwy, colour = class)) +
geom_point() +
geom_smooth(method = "lm", se = F) +
theme(legend.position = "bottom", legend.box = "horizontal") +
scale_color_discrete(NULL) +
guides(fill = guide_legend(ncol = 1, nrow = 1, byrow = TRUE))
答案 0 :(得分:6)