This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
from bokeh.server.server import Server | |
from bokeh.application import Application | |
from bokeh.application.handlers.function import FunctionHandler | |
from bokeh.plotting import figure | |
from bokeh.layouts import widgetbox, layout | |
from bokeh.models import ColumnDataSource | |
from bokeh.models.widgets import Button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Run this example as: python save_selection.py | |
Then navigate to localhost:5000 | |
Use python save_selection.py -h for more options. | |
""" | |
import base64 | |
import pandas as pd | |
import numpy as np |
OlderNewer