Spaces:
Sleeping
Sleeping
adrianpierce
commited on
Commit
•
f65d404
1
Parent(s):
272f7b5
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ st.set_page_config(layout="wide")
|
|
7 |
# Load the CSV file
|
8 |
df = pd.read_csv('spices_by_cuisine_with_all_flavors.csv', index_col=0)
|
9 |
|
|
|
10 |
|
11 |
pivot = df.drop(columns=['Flavor Description']).rename(columns={"Unnamed: 0": "Spice"}).set_index('Spice')
|
12 |
|
|
|
7 |
# Load the CSV file
|
8 |
df = pd.read_csv('spices_by_cuisine_with_all_flavors.csv', index_col=0)
|
9 |
|
10 |
+
st.dataframe(df)
|
11 |
|
12 |
pivot = df.drop(columns=['Flavor Description']).rename(columns={"Unnamed: 0": "Spice"}).set_index('Spice')
|
13 |
|