I'm trying to modify the scatter_matrix plot available on Pandas.
Simple usage would be
Obtained doing :
iris = datasets.load_iris()
df = pd.DataFrame(iris.data, columns=iris.feature_names)
pd.tools.plotting.scatter_matrix(df, diagonal='kde', grid=False)
plt.show()
I want to do several modification, among which:
- managing to turn off grid on all plots
- rotate x any y labels 90 degree
- turn ticks off
Is there a way for me to modify pandas' output without having to rewrite my own scatter plot function ? where to start to add non-existing options, fine tunings, etc ?
Thanks !
