Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
dpraz/Cosmoplot_minimal_reproducer
freddyaboulton
/
Cosmoplot_minimal_reproducer
like
0
Sleeping
App
Files
Files
Community
dpraz
commited on
Sep 18, 2023
Commit
afe0567
•
1 Parent(s):
42346e7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
data = pd.read_excel("NIAD.xlsx")
2
+
df=pd.DataFrame(data)
3
+
4
+
with gr.Blocks() as demo:
5
+
with gr.Column(scale=1):
6
+
with gr.Row():
7
+
gr.Button(value="Filler",interactive=False)
8
+
with gr.Column(scale=1):
9
+