File size: 182 Bytes
9faa754
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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'})