コード例 #1
0
))

output_notebook()

TOOLS = "pan,wheel_zoom,box_zoom,reset,hover,save"

p = figure(title="Texas Unemployment 2009",
           tools=TOOLS,
           x_axis_location=None,
           y_axis_location=None)
p.grid.grid_line_color = None

p.patches('x',
          'y',
          source=source,
          fill_color='color',
          fill_alpha=0.7,
          line_color="white",
          line_width=0.5)

hover = p.select_one(HoverTool)
hover.point_policy = "follow_mouse"
hover.tooltips = [
    ("Name", "@name"),
    ("Unemployment rate)", "@rate%"),
    ("(Long, Lat)", "($x, $y)"),
]

show(p)

import numpy as np