From 90023312dc288366e1904f6d3d986a5b29b0ecb4 Mon Sep 17 00:00:00 2001 From: Lukas Prause Date: Mon, 12 Dec 2022 13:47:24 +0100 Subject: [PATCH] Adds pdf export. --- plot_transmission_timeline.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plot_transmission_timeline.py b/plot_transmission_timeline.py index d360374..b8246f9 100755 --- a/plot_transmission_timeline.py +++ b/plot_transmission_timeline.py @@ -134,6 +134,8 @@ if __name__ == "__main__": lambda x: ((x * 8) / args.interval) / 10**6 ) + # remove all not needed columns + transmission_df = transmission_df.filter(["goodput", "datetime"]) # read serial csv serial_df = pd.read_csv(args.serial_file)