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:

enter image description here how fix this?


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -