Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
acarz
/
iris
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
iris
/
app.py
acarz
Create app.py
9faa754
verified
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
182 Bytes
import
streamlit
as
st
import
pandas
as
pd
df=pd.read_csv(
'iris.csv'
)
df
# method 1
st.table(df.head())
st.dataframe(df.head().style.highlight_max(axis=
0
))
st.json({
'data'
:
'Zafer'
})