04pallav
9/11/2017 - 10:23 PM

correlation in a feature matrix

correlation in a feature matrix

#see corelation in both test and train
d = zillow_train
corrmat = d.corr()

# Set up the matplotlib figure
f, ax = plt.subplots(figsize=(20, 10))

# Draw the heatmap using seaborn
sns.heatmap(corrmat, vmax=.1, square=True)