ggplot2 - 添加facet_grid会获取错误的数据组

时间:2017-02-08 16:55:46

标签: r ggplot2

此代码生成它应该是什么。

ggplot(df,aes(x=df$month,y=df$fuel_swiperate,color=trans_card_type,group=trans_card_type)) + 
  geom_point() +
  geom_line() 

enter image description here

由于我将每个类别放在不同的方面,我添加了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)

enter image description here

0 个答案:

没有答案