File size: 955 Bytes
7b444b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# AUTOGENERATED! DO NOT EDIT! File to edit: ../../nbs/book/LabellingTracker/12_MasterTable.ipynb.

# %% auto 0
__all__ = ['df']

# %% ../../nbs/book/LabellingTracker/12_MasterTable.ipynb 2
import streamlit as st
import pandas as pd
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt


# %% ../../nbs/book/LabellingTracker/12_MasterTable.ipynb 6
st.set_page_config(
    page_title="Master",
    page_icon="πŸ‘‹",
    layout='wide'
)

# %% ../../nbs/book/LabellingTracker/12_MasterTable.ipynb 8
# st.sidebar.success("Select a demo above.")

# %% ../../nbs/book/LabellingTracker/12_MasterTable.ipynb 10
df = None
st.write("# Master Table")
if 'processed_df' not in st.session_state:
    st.write("Please go to andon page and upload data")
else:
    df = st.session_state['processed_df'] 
    col_order = st.session_state['col_order'] 
    colors = st.session_state['colors']
    colors2= st.session_state['colors2']
    st.table(data=df)