File size: 206 Bytes
f1e08ee
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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()