Guest User

Untitled

a guest
Jan 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. heatmap = go.Heatmap(
  2. z=dfs.corr(method='pearson').as_matrix(),
  3. x=dfs.columns,
  4. y=dfs.columns,
  5. colorbar=dict(title='Pearson Coefficient'),
  6. )
  7.  
  8. layoutheat = go.Layout(title="title")
  9.  
  10. figheat = go.Figure(data=[heatmap], layout=layoutheat)
  11. py.iplot(figheat)
Add Comment
Please, Sign In to add comment