标签: python seaborn
我有此代码:
then
并且代码连续生成10个图形:
如何使图形连续3张,有4列?
答案 0 :(得分:1)
您可以为col_wrap指定4可选参数
col_wrap
4
g = sb.FacetGrid(planes_df, col = 'OriginCityName', col_order = cities_top_ten, col_wrap = 4)