Created
October 6, 2022 21:04
-
-
Save ant358/cfd9c60f1a299cc975d3a97dc6891a48 to your computer and use it in GitHub Desktop.
Import the modules required to run a Jupyter Dash dashboard in Google Colab
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
# load python modules | |
import dash_daq as daq | |
import dash_bootstrap_components as dbc | |
import pandas as pd | |
import numpy as np | |
from jupyter_dash import JupyterDash | |
from dash import dcc, html, Input, Output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment