此代码生成它应该是什么。
ggplot(df,aes(x=df$month,y=df$fuel_swiperate,color=trans_card_type,group=trans_card_type)) +
geom_point() +
geom_line()
由于我将每个类别放在不同的方面,我添加了facet_grid选项,但之后数据变得非常奇怪,因为数据处于错误的方面。
ggplot(df,aes(x=df$month,y=df$fuel_swiperate,color=trans_card_type,group=trans_card_type)) +
geom_point() +
geom_line() +
facet_grid(~trans_card_type)