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
# Create our app layout | |
app = dash.Dash(__name__) | |
server = app.server | |
app.layout = html.Div([ | |
html.H2('My Dash App'), | |
dt.DataTable( | |
id='my-datatable', | |
rows=df_ag.to_dict('records'), | |
editable=False, | |
row_selectable=True, |
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 Supporting Libraries | |
import pandas as pd | |
# Import Dash Visualization Libraries | |
import dash_core_components as dcc | |
import dash_html_components as html | |
import dash_table_experiments as dt | |
import dash.dependencies | |
from dash.dependencies import Input, Output, State | |
import plotly |
NewerOlder