I have created a dataframe with pandas, further generated a pairplot with seaborn which works fine. The problem is, that the data frame is too big, having 1700 rows and 23 columns. Therefore, the pairplots are too tiny to see anything. (besides, file size is huge, RAM is very busy).
As an example a dataframe with header and index:
A B C ... W
AAA 1 2 3 ... 23
AAB 2 4 6 ...
.
.
.
ZZC 1700 1701 ... 1723
will lead to a pairplot of 23*23 ! Can I force to have 4 or more plot windows instead of one, when using python console? Can I utilize matplotlib for that and how?