| 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'}) |
| 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'}) |