diff options
| author | Will Hawkins <[email protected]> | 2023-01-27 22:06:10 -0500 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2023-01-27 22:06:10 -0500 |
| commit | c8350c13a09b8c19656cd32a065b69693b6117c5 (patch) | |
| tree | 083f345217d7f9a4d2136078f830b4887c9715e4 /tools/graphing.py | |
| parent | b7bc5fa7dd75b8aa0bc3be22b1b3deab1979cd96 (diff) | |
[FEATURE] Finalize implementation of rev3 of the draft
Diffstat (limited to 'tools/graphing.py')
| -rw-r--r-- | tools/graphing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/graphing.py b/tools/graphing.py index 5ba3fbf..eb1e6d7 100644 --- a/tools/graphing.py +++ b/tools/graphing.py @@ -108,7 +108,7 @@ def throughputClean(df): def granularClean(df): - df.columns = ["CreationTime", "Throughput", "ID", "Type", "Empty"] + df.columns = ["CreationTime", "Throughput", "ID", "RTT", "Cwnd", "Type", "Empty"] df = df.drop(columns=["Empty"]) df["CreationTime"] = pd.to_datetime(df["CreationTime"], format="%m-%d-%Y-%H-%M-%S.%f") df["Type"] = df["Type"].apply(str.strip) |
