Update app_display_text.py
Browse files- app_display_text.py +1 -1
app_display_text.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
-
df=pd.read_csv('
|
| 4 |
df
|
| 5 |
# method 1
|
| 6 |
st.table(df.head())
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
+
df=pd.read_csv('iris.csv')
|
| 4 |
df
|
| 5 |
# method 1
|
| 6 |
st.table(df.head())
|