bdc6be22e5941d895c214ef88f9b03df8f592d61,examples/plotting/file/hover.py,,,#,12
Before Change
foo = list(itertools.permutations("abcdef"))[:N]
bar = np.random.normal(size=N)
source = ColumnDataSource(
data=dict(
x=x,
y=y,
radius=radii,
colors=colors,
foo=foo,
bar=bar,
)
)
p = figure(title="Hoverful Scatter", tools=TOOLS)
p.circle(x, y, radius=radii, source=source,
After Change
"//%02x%02x%02x" % (int(r), int(g), 150) for r, g in zip(50+2*x, 30+2*y)
]
source = ColumnDataSource(data=dict(
x=x,
y=y,
radius=radii,
colors=colors,
foo=list(itertools.permutations("abcdef"))[:N],
bar=np.random.normal(size=N),
))
p = figure(title="Hoverful Scatter", tools=TOOLS)
p.circle(x, y, radius=radii, source=source,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: bokeh/bokeh
Commit Name: bdc6be22e5941d895c214ef88f9b03df8f592d61
Time: 2015-12-22
Author: bryanv@continuum.io
File Name: examples/plotting/file/hover.py
Class Name:
Method Name:
Project Name: bokeh/bokeh
Commit Name: 8df284ba4178643dcc1953a852e0f9084069f728
Time: 2016-10-03
Author: github@birdsbits.com
File Name: examples/models/population_server.py
Class Name:
Method Name:
Project Name: bokeh/bokeh
Commit Name: acd97e3a8cdb11c18716b6e5588c84cae8bcd80a
Time: 2015-12-22
Author: bryanv@continuum.io
File Name: examples/plotting/file/tap.py
Class Name:
Method Name: