python - Seaborn FacetGrid cutting off charts -
i have data want visualize in 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)
however, resulting plots cut off:
Comments
Post a Comment