Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jung
/
ep_explorer
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Jung
commited on
Oct 12, 2023
Commit
7d13043
·
1 Parent(s):
0e62591
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import pandas as pd
2
+
import numpy as np
3
+
4
+
df = pd.read_csv('heroes_ep.csv')
5
+
st.write('hello world')
6
+
st.dataframe(df.head())