rameshmoorthy
commited on
Commit
•
719ba38
1
Parent(s):
9b7bc38
Update app.py
Browse files
app.py
CHANGED
@@ -106,11 +106,11 @@ with gr.Blocks() as cluster:
|
|
106 |
out2=gr.File(label="Download CSV")
|
107 |
gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h1>""")
|
108 |
out3=gr.File(label="Download CSV")
|
109 |
-
with gr.
|
110 |
|
111 |
gr.Markdown("Uploaded File")
|
112 |
dataframe1=gr.Dataframe()
|
113 |
-
with gr.
|
114 |
gr.Markdown("Columns Analysis")
|
115 |
dataframe2=gr.Dataframe()
|
116 |
btn.click(generate_report,inputs=[file],outputs=[out1,out3,dataframe1,dataframe2])
|
|
|
106 |
out2=gr.File(label="Download CSV")
|
107 |
gr.HTML(value="""<h1 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h1>""")
|
108 |
out3=gr.File(label="Download CSV")
|
109 |
+
with gr.Column():
|
110 |
|
111 |
gr.Markdown("Uploaded File")
|
112 |
dataframe1=gr.Dataframe()
|
113 |
+
with gr.Column():
|
114 |
gr.Markdown("Columns Analysis")
|
115 |
dataframe2=gr.Dataframe()
|
116 |
btn.click(generate_report,inputs=[file],outputs=[out1,out3,dataframe1,dataframe2])
|