import streamlit as st | |
def summary_view(data, models_to_plot: set[str]): | |
st.title("Summary View") | |
st.write(data) | |
st.write(models_to_plot) | |
if st.button('Say Hello'): | |
st.balloons() | |
import streamlit as st | |
def summary_view(data, models_to_plot: set[str]): | |
st.title("Summary View") | |
st.write(data) | |
st.write(models_to_plot) | |
if st.button('Say Hello'): | |
st.balloons() | |