Python seaborn, dataframe big, do subplot -


i have created dataframe pandas, further generated pairplot seaborn works fine. problem is, data frame big, having 1700 rows , 23 columns. therefore, pairplots tiny see anything. (besides, file size huge, ram busy).

as example dataframe header , index:

    b c ... w aaa 1 2 3 ... 23 aab 2 4 6 ... . . . zzc 1700 1701 ... 1723 

will lead pairplot of 23*23 ! can force have 4 or more plot windows instead of one, when using python console? can utilize matplotlib , how?

the answer "yes" can, , should use facetgrid functionality. can read in this tutorial. , maybe my code snippet answer out.

beyond that, it's hard code snippet unless provide sample data , more specific on you'd output be.