remove plot labels. They hide useful captioning
Browse files
app.py
CHANGED
|
@@ -487,13 +487,13 @@ with gr.Blocks() as demo:
|
|
| 487 |
results_output = gr.Textbox(label="Summary Text", interactive=False) # Removed lines=5 to allow auto-scrolling
|
| 488 |
|
| 489 |
gr.Markdown("#### SWR Success Rates Plot")
|
| 490 |
-
swr_plot_output = gr.Plot(
|
| 491 |
|
| 492 |
gr.Markdown("#### Sample Portfolio Paths Plot")
|
| 493 |
-
paths_plot_output = gr.Plot(
|
| 494 |
|
| 495 |
gr.Markdown("#### Probability of End Balance >= Initial Investment Plot")
|
| 496 |
-
balance_plot_output = gr.Plot(
|
| 497 |
|
| 498 |
gr.Button("Buy Me a Coffee ☕", link="https://buymeacoffee.com/liaoch", variant="primary")
|
| 499 |
|
|
|
|
| 487 |
results_output = gr.Textbox(label="Summary Text", interactive=False) # Removed lines=5 to allow auto-scrolling
|
| 488 |
|
| 489 |
gr.Markdown("#### SWR Success Rates Plot")
|
| 490 |
+
swr_plot_output = gr.Plot()
|
| 491 |
|
| 492 |
gr.Markdown("#### Sample Portfolio Paths Plot")
|
| 493 |
+
paths_plot_output = gr.Plot()
|
| 494 |
|
| 495 |
gr.Markdown("#### Probability of End Balance >= Initial Investment Plot")
|
| 496 |
+
balance_plot_output = gr.Plot() # New plot output
|
| 497 |
|
| 498 |
gr.Button("Buy Me a Coffee ☕", link="https://buymeacoffee.com/liaoch", variant="primary")
|
| 499 |
|