I am creating a pandas scatter matrix using the following code:
import numpy as np
import pandas as pd
a = np.random.normal(1, 3, 100)
b = np.random.normal(3, 1, 100)
c = np.random.normal(2, 2, 100)
df = pd.DataFrame({'A':a,'B':b,'C':c})
pd.scatter_matrix(df, diagonal='kde')
This result is in the following scattering matrix:

The first row has no bright labels, the 3rd column without labels, the 3rd element "C" is not marked.
Any idea how to complete this story with missing shortcuts?
source
share