Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -49,23 +49,23 @@ with gr.Blocks() as demo:
|
|
49 |
with gr.Column():
|
50 |
file = gr.File()
|
51 |
with gr.Column():
|
52 |
-
inp = gr.Textbox(placeholder="Enter the target feature name")
|
53 |
btn = gr.Button("Find Correlation")
|
54 |
gr.Markdown(
|
55 |
"""
|
56 |
-
|
57 |
""")
|
58 |
with gr.Row():
|
59 |
labels = gr.Label(num_top_classes = 10)
|
60 |
gr.Markdown(
|
61 |
"""
|
62 |
-
|
63 |
""")
|
64 |
with gr.Row():
|
65 |
fig1 = gr.Plot()
|
66 |
gr.Markdown(
|
67 |
"""
|
68 |
-
|
69 |
""")
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|
|
|
49 |
with gr.Column():
|
50 |
file = gr.File()
|
51 |
with gr.Column():
|
52 |
+
inp = gr.Textbox(placeholder="Enter the target feature name", label="Target Variable")
|
53 |
btn = gr.Button("Find Correlation")
|
54 |
gr.Markdown(
|
55 |
"""
|
56 |
+
## Correlation with other numeric features
|
57 |
""")
|
58 |
with gr.Row():
|
59 |
labels = gr.Label(num_top_classes = 10)
|
60 |
gr.Markdown(
|
61 |
"""
|
62 |
+
## HeatMap
|
63 |
""")
|
64 |
with gr.Row():
|
65 |
fig1 = gr.Plot()
|
66 |
gr.Markdown(
|
67 |
"""
|
68 |
+
## Plot of top 3 correlated features
|
69 |
""")
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|