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
/* Table of contents | |
ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
- Banner | |
- Scalable Container | |
- Remove Undo | |
/* Banner | |
ββββββββββββββββββββββββββββββββββββββββββββββββββ */ | |
.banner { |
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
/* Table of contents | |
ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
- Grid | |
- Base Styles | |
- Typography | |
- Links | |
- Buttons | |
- Forms | |
- Lists | |
- Code |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 os | |
import dash | |
import dash_core_components as dcc | |
import dash_html_components as html | |
import pandas as pd | |
import numpy as np | |
import plotly.graph_objs as go | |
from dash.dependencies import Input, Output, State |
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
/* | |
Gist: https://gist.github.com/xhlulu/0acba79000a3fd1e6f552ed82edb8a64/ | |
Production: https://cdn.rawgit.com/xhlulu/0acba79000a3fd1e6f552ed82edb8a64/raw/dash_template.css | |
Development: https://rawgit.com/xhlulu/0acba79000a3fd1e6f552ed82edb8a64/raw/dash_template.css | |
*/ | |
/* Table of contents | |
ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
- Banner |
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
# https://gist.github.com/xhlulu/f7735970704b97fd0b72203628c1cc77 | |
category_map = { | |
1: 'person', | |
2: 'bicycle', | |
3: 'car', | |
4: 'motorcycle', | |
5: 'airplane', | |
6: 'bus', | |
7: 'train', |
NewerOlder