File size: 368 Bytes
d1da800
2865353
 
 
d1da800
63a7f01
 
d1da800
63a7f01
d1da800
63a7f01
 
 
d1da800
63a7f01
d1da800
 
63a7f01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import streamlit as st
import numpy as np
import plotly.graph_objects as go
from sklearn.linear_model import LinearRegression

# Week 1 content in person
def show():
    st.markdown("""
    ## Week 1 content in person
    """)

# Week 1 content online
def show():
    st.markdown("""
    ## Week 1 content not online yet
    """)
if __name__ == "__main__":
    show()