File size: 240 Bytes
f8fb7b3
4ca0fe6
 
 
1232638
 
4ca0fe6
f8fb7b3
 
4ca0fe6
 
3122083
4ca0fe6
1
2
3
4
5
6
7
8
9
10
11
12
13
from dash import Dash, dash_table, html

app = Dash(__name__)

server = app.server

app.layout = html.Div([
    html.Div(children='ODR Exploratory Data Analysis Dashboard'),
    dash_table.DataTable()
])

def main():
    app.run(debug=True)