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)