Exemple #1
0
def get_counties_plot(data_frame):
    plot = Bar(data_frame,
               label='CTYNAME',
               values='TOT_POP',
               agg='max',
               plot_width=1200,
               plot_height=500,
               title='Population by County',
               legend=False)
    plot.xaxis.axis_label = 'County'
    plot.yaxis.axis_label = 'Population'
    plot.yaxis.formatter = NumeralTickFormatter(format="0a")
    plot.sizing_mode = 'scale_width'
    return plot