summaryrefslogtreecommitdiff
path: root/tools/graphing.py
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2023-01-27 22:06:10 -0500
committerWill Hawkins <[email protected]>2023-01-27 22:06:10 -0500
commitc8350c13a09b8c19656cd32a065b69693b6117c5 (patch)
tree083f345217d7f9a4d2136078f830b4887c9715e4 /tools/graphing.py
parentb7bc5fa7dd75b8aa0bc3be22b1b3deab1979cd96 (diff)
[FEATURE] Finalize implementation of rev3 of the draft
Diffstat (limited to 'tools/graphing.py')
-rw-r--r--tools/graphing.py2
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)