0

我有一些数据想在 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)

但是,结果图被截断:

在此处输入图像描述 我该如何解决?

4

0 回答 0