iris / app.py
acarz's picture
Create app.py
9faa754 verified
raw
history blame contribute delete
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'})