标签: python pandas time-series seaborn facet-grid
我想要在Seaborn中FacetGrid显示一些数据。
FacetGrid
half_counts = all_counts.loc[all_counts['location_id'] <= 50] g = sns.FacetGrid(half_counts, col="location_id", col_wrap=10) g = g.map(sns.pointplot, "invite_sent_time", "q_i_ratio", scale=.7)
然而,所得到的地块被切断了:
我该如何解决这个问题?