sns.set_style("white")
g = sns.factorplot(x="CREATED_AT1", y="count", hue='KW',
data=df_kw_mentions, size=5, aspect=2, palette="GnBu_d")
plt.xticks(rotation=45)
g.set(xlabel='Year-Month', ylabel='Count')
由于x轴具有年 - 月的数据。它希望将数据分组为4个月内的组合以便更好地显示。是否有可能单独使用factorplot?