Skip to content

Instantly share code, notes, and snippets.

View AnnMarieW's full-sized avatar

Ann Marie Ward AnnMarieW

View GitHub Profile
import streamlit as st
import pandas as pd
import numpy as np
import plotly.express as px
from dash_bootstrap_templates import load_figure_template
# I was too lazy to configure the charts individually, and this dash library served very well :)
load_figure_template('minty')
st.set_page_config(layout="wide")
# ========== Data Preparation ========== #
@st.cache(allow_output_mutation=True)