import plotly.figure_factory as ff
from plotly.offline import iplot

# Correlation Heatmap
iplot(ff.create_annotated_heatmap(corrs.iloc[:10, :10].round(3).values, x=list(corrs.iloc[:10, :10].columns), 
                                  y=list(corrs.iloc[:10, :10].index), annotation_text=corrs.iloc[:10, :10].round(3).values))

-w1538

References