I'm searching for a way to set a title to Pandas scatter matrix
:
from pandas.tools.plotting import scatter_matrix
scatter_matrix(data, alpha=0.5,diagonal='kde')
I tried plt.title('scatter-matrix')
but it creates a new figure.
Any help is appreciated.