summaryrefslogtreecommitdiff
path: root/bjoern
diff options
context:
space:
mode:
authorareyoumee <ayumilara.bischoff@stud.tu-darmstadt.de>2023-08-10 18:47:39 +0200
committerareyoumee <ayumilara.bischoff@stud.tu-darmstadt.de>2023-08-10 18:47:39 +0200
commit0d7e968b9acab65345cf72a88fdb49e9426682b8 (patch)
treea7a1077b4f2c69425a5917c623ef7f111f1cd68a /bjoern
parentd35d9497f4044352ec94cb736aec9a80a8d25b19 (diff)
fix typo
Diffstat (limited to 'bjoern')
-rw-r--r--bjoern/videoanalyse/post_processing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bjoern/videoanalyse/post_processing.py b/bjoern/videoanalyse/post_processing.py
index 428cb5d..4d82c4a 100644
--- a/bjoern/videoanalyse/post_processing.py
+++ b/bjoern/videoanalyse/post_processing.py
@@ -90,7 +90,7 @@ with open (data_path / "metrics.csv", "r") as input_file, \
csv_reader = csv.reader(input_file, quotechar='"', quoting=csv.QUOTE_NONNUMERIC)
csv_writer = csv.writer(output_file, quotechar='"', quoting=csv.QUOTE_NONNUMERIC)
header = next(csv_reader)
- header.extend(["group_index","longest","most frequent"])
+ header.extend(["group_index","longest","most_frequent"])
csv_writer.writerow(header)
for row in csv_reader:
for idx, grp in enumerate(url_groups):