matplotlib fivethirtyeight horizontal graph

Solutions on MaxInterview for matplotlib fivethirtyeight horizontal graph by the best coders in the world

showing results for - "matplotlib fivethirtyeight horizontal graph"
Ignacio
03 Sep 2016
1style.use('fivethirtyeight')#style of graph
2fig, ax = plt.subplots(figsize=(9, 5))
3ax.barh(df1_corr.index, df1_corr)
4ax.barh(df2_corr.index, df2_corr)
5plt.show()
similar questions