rameshmoorthy
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -167,15 +167,17 @@ with gr.Blocks() as cluster:
|
|
167 |
out1=gr.File(label="Download CSV")
|
168 |
gr.HTML(value="""<h2 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h2>""")
|
169 |
out2=gr.File(label="Download CSV")
|
170 |
-
with gr.Column()
|
171 |
-
gr.
|
|
|
172 |
var=gr.HTML()
|
173 |
with gr.Column():
|
174 |
-
|
175 |
-
gr.Markdown("#Uploaded File")
|
176 |
dataframe1=gr.Dataframe()
|
177 |
with gr.Column():
|
178 |
-
gr.
|
|
|
179 |
dataframe2=gr.Dataframe()
|
180 |
btn.click(generate_report,inputs=[file],outputs=[out1,out2,var,dataframe1,dataframe2])
|
181 |
cluster.launch()
|
|
|
167 |
out1=gr.File(label="Download CSV")
|
168 |
gr.HTML(value="""<h2 style="color: #3399FF; text-shadow: 1px 1px 2px #ddd;">SWEETVIZ REPORT</h2>""")
|
169 |
out2=gr.File(label="Download CSV")
|
170 |
+
with gr.Column()
|
171 |
+
gr.HTML(value="""<h2 style="color: #BA4A00; text-shadow: 1px 1px 2px #ddd;"COLUMNS IN FILE</h2>"""):
|
172 |
+
#gr.Markdown("***Uploaded File***")
|
173 |
var=gr.HTML()
|
174 |
with gr.Column():
|
175 |
+
gr.HTML(value="""<h2 style="color: #BA4A00; text-shadow: 1px 1px 2px #ddd;"UPLOADED FILE</h2>"""):
|
176 |
+
#gr.Markdown("#Uploaded File")
|
177 |
dataframe1=gr.Dataframe()
|
178 |
with gr.Column():
|
179 |
+
gr.HTML(value="""<h2 style="color: #BA4A00; text-shadow: 1px 1px 2px #ddd;"COLUMNS STATS AND ANALYSIS</h2>"""):
|
180 |
+
#gr.Markdown("#Columns Analysis")
|
181 |
dataframe2=gr.Dataframe()
|
182 |
btn.click(generate_report,inputs=[file],outputs=[out1,out2,var,dataframe1,dataframe2])
|
183 |
cluster.launch()
|