DHEIVER commited on
Commit
e577e06
·
1 Parent(s): 0d98167

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -8
app.py CHANGED
@@ -59,14 +59,21 @@ def plot_anomalies(df_test_value, data, anomalies):
59
  ax.set_title("Anomalous Data Points")
60
  return fig
61
 
62
- def format_output(plot, anomalous_data_indices_str):
63
- if isinstance(plot, tuple):
64
- fig, ax = plot
65
- else:
66
- fig = plot
67
- ax = fig.axes[0]
68
- ax.text(0, -0.1, "Anomalous Data Indices: " + anomalous_data_indices_str, transform=ax.transAxes)
69
- return fig
 
 
 
 
 
 
 
70
 
71
  def master(file):
72
  # read file
 
59
  ax.set_title("Anomalous Data Points")
60
  return fig
61
 
62
+ def format_output(plot, indices):
63
+ # Create a new figure and axis for the combined output
64
+ fig_combined, (ax_plot, ax_text) = plt.subplots(nrows=2, figsize=(12, 8), gridspec_kw={'height_ratios': [6, 1]})
65
+
66
+ # Add the plot to the top axis
67
+ fig, ax = plot
68
+ ax_plot.imshow(fig.canvas.renderer.buffer_rgba())
69
+ ax_plot.axis('off')
70
+
71
+ # Add the text to the bottom axis
72
+ ax_text.text(0.5, 0, f"Anomalous Data Indices: {', '.join(indices)}", fontsize=12, ha='center')
73
+ ax_text.axis('off')
74
+
75
+ return fig_combined, None
76
+
77
 
78
  def master(file):
79
  # read file