I have a data set with huge number of features, so analysing the correlation matrix has become very difficult. I want to plot a correlation matrix which we get using d
d
Along with other methods it is also good to have pairplot which will give scatter plot for all the cases-
import pandas as pd import numpy as np import seaborn as sns rs = np.random.RandomState(0) df = pd.DataFrame(rs.rand(10, 10)) sns.pairplot(df)