Seaborn FacetGrid切断图表

时间:2016-09-13 03:40:19

标签: python pandas time-series seaborn facet-grid

我想要在Seaborn中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)

然而,所得到的地块被切断了:

enter image description here 我该如何解决这个问题?

0 个答案:

没有答案