I am a python user and have a large dataframe and want to make correlation plot.
I found a good answer to this question at here. pandas scatter matrix display correlation coefficient
However, my dataframe is bigger than he suggested and mine has more rows and columns like below. (np.random.randn(1000, 6), columns=['a', 'b', 'c', 'd','e','f'])
If I use his method, the figure will be tight and each plot will be quite small. Is there any way to make plot bigger? Also, if you could tell me how to make the font bigger, I would be grateful for that. Thank you very much for your help.