salesforce / modules /data_view.py python Copy Edit
Sanjayraju30's picture
Create modules/data_view.py python Copy Edit
67be89c verified
raw
history blame contribute delete
204 Bytes
import streamlit as st
def show_data(title, df):
st.subheader(title)
st.dataframe(df, use_container_width=True)
def show_status(message="βœ… All predictions complete."):
st.success(message)