Spaces:
Sleeping
Sleeping
File size: 241 Bytes
1bddff1 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
from sklearn.datasets import load_iris
st.title("Hello World")
st.header("This is a header")
st.write("Hello class!")
data = load_iris(as_frame=True)
df = data.data
st.write("## this is a subtitle")
st.dataframe(df) |