Implement Plotly Dash app with efficient dynamic resampler #6

Merged
eeeck merged 26 commits from dev-dash into main 2026-07-22 20:18:20 +02:00
Showing only changes of commit fae85d1af9 - Show all commits
+1 -1
View File
@@ -119,7 +119,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Analyze CAN bus message frequency")
parser.add_argument("input", type=Path, help="Path to the input CAN log file")
parser.add_argument("output", type=Path, nargs="?", default=Path("freq_report.html"), help="Path to the output HTML report")
parser.add_argument("title", nargs="?", default="CAN Bus Message Frequency", help="Title for the HTML report")
parser.add_argument("title", nargs="?", default="Frequency", help="Title for the HTML report")
args = parser.parse_args()
df = load_data(args.input)