10BC0 Example metadata for gallery examples · Pull Request #11490 · bokeh/bokeh · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Prev Previous commit
Next Next commit
removed some file outputs
  • Loading branch information
carolyn committed Aug 10, 2021
commit 42f854291c403807e749498fdc9fa0bb5374b781
4 changes: 1 addition & 3 deletions examples/plotting/file/bar_colormapped.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@
|

'''
from bokeh.io import output_file, show
from bokeh.io import show
from bokeh.models import ColumnDataSource
from bokeh.palettes import Spectral6
from bokeh.plotting import figure
from bokeh.transform import factor_cmap

output_file("bar_colormapped.html")

fruits = ['Apples', 'Pears', 'Nectarines', 'Plums', 'Grapes', 'Strawberries']
counts = [5, 3, 4, 2, 4, 6]

Expand Down
2 changes: 1 addition & 1 deletion examples/plotting/file/iris.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
|

'''
from bokeh.plotting import figure, output_file, show
from bokeh.plotting import figure, show
from bokeh.sampledata.iris import flowers

colormap = {'setosa': 'red', 'versicolor': 'green', 'virginica': 'blue'}
Expand Down
4 changes: 1 addition & 3 deletions examples/plotting/file/pie.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@

import pandas as pd

from bokeh.io import output_file, show
from bokeh.io import show
from bokeh.palettes import Category20c
from bokeh.plotting import figure
from bokeh.transform import cumsum

output_file("pie.html")

x = {
'United States': 157,
'United Kingdom': 93,
Expand Down
0