From 30d38827b338642d3519ffd8991643c259f0078c Mon Sep 17 00:00:00 2001 From: Steffen Remus <steremus@gmail.com> Date: Wed, 17 Apr 2024 16:03:34 +0200 Subject: [PATCH] ignore files --- .gitignore | 2 ++ bin/plotcounts.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..833c8d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +dont_track_me.txt \ No newline at end of file diff --git a/bin/plotcounts.py b/bin/plotcounts.py index 63c6710..86e8e54 100755 --- a/bin/plotcounts.py +++ b/bin/plotcounts.py @@ -94,7 +94,6 @@ def main(args): names=('word', 'word_frequency')) df['rank'] = df['word_frequency'].rank(ascending=False, method='max') - ax = df.plot.scatter(x='word_frequency', y='rank', loglog=True, figsize=[12, 6], -- GitLab