Generation

generate functionSat, 18 Feb 2023

streamlit dashboard with three tabs and each tabs will have 4 charts

def create_dashboard(): st.title("test") st.write("test") pages = ['Home', 'Exploration', 'Predictions'] choice = st.sidebar.selectbox('Select page', pages) if choice == 'Home': st.header('This is the home page') st.write('test') elif choice == 'Exploration': st.header('This is the exploration page') else: st.header('This is the Predictions page')

Questions about programming?Chat with your personal AI assistant