Skip to content

Commit

Permalink
Removed a debug comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
aeoranday committed Feb 27, 2024
1 parent d10cf85 commit 181d901
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/ta_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,12 +485,12 @@ def main():
write_summary_stats(data.ta_data[ta_key], anomaly_filename, ta_key)

# Analysis Plots
#pdf = pdf_plotter.get_pdf() # Needed for extra plots that are not general.
pdf = pdf_plotter.get_pdf() # Needed for extra plots that are not general.
# ==== Time Delta Comparisons =====
if linear:
plot_pdf_time_delta_histograms(data.ta_data, data.tp_data, pdf_plotter._pdf, time_label, False)
plot_pdf_time_delta_histograms(data.ta_data, data.tp_data, pdf, time_label, False)
if log:
plot_pdf_time_delta_histograms(data.ta_data, data.tp_data, pdf_plotter._pdf, time_label, True)
plot_pdf_time_delta_histograms(data.ta_data, data.tp_data, pdf, time_label, True)
# =================================

# ==== Time Spans Per TA ====
Expand Down

0 comments on commit 181d901

Please sign in to comment.