Skip to content

Commit

Permalink
Merge pull request #576 from marabuuu/plotting-download-stats
Browse files Browse the repository at this point in the history
Enhance plotting download stats
  • Loading branch information
haesleinhuepf authored Jan 17, 2025
2 parents 1a157ae + f4ba703 commit 9c7763c
Show file tree
Hide file tree
Showing 8 changed files with 648 additions and 756 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/statistics/downloads_and_views_over_time.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/statistics/number_of_records_over_time.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/statistics/ours_vs_others.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion docs/statistics/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@ We are using this resource to track some basic statistics of how resources are u

For this, we are analysing records hosted on the Zenodo platform only.

![](number_of_zenodo_records_over_time.png)
![](number_of_records_over_time.png)

Also, we can investigate the distribution among different topics:

![](distribution_of_tag_categories.png)

![](relative_downloads_by_tags.png)

And compare different groups of people:

![](ours_vs_others.png)


Binary file added docs/statistics/relative_downloads_by_tags.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,360 changes: 605 additions & 755 deletions notebooks/download_stats.ipynb

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions scripts/authors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
our_authors = [
"Haase, Robert",
"Lampert, Mara",
"Huang, Yixin",
"Gihlein, Lea",
"Massei, Riccardo",
"Caporal, Clement",
"Wetzker, Conni",
"Zoccoler, Marcelo",
"Schrader, Andrea",
"Wendt, Jens",
"Zobel, Thomas",
"Wetzker, Cornelia",
"Fuchs, Vanessa",
"Müller, Maximilian",
"Ahmadi, Mohsen",
"Schmidt, Christian",
"Weidtkamp-Peters, Stefanie",
"Kunis, Susanne",
"Boissonnet, Tom",
"Ferrando-May, Elisa",
"Moore, Josh",
]

temp = []
for author in our_authors:
temp.append(author)
if "," in author:
lastname = author.split(",")[0].strip()
firstname = author.split(",")[1].strip()
temp.append(firstname + " " + lastname)

our_authors = temp

0 comments on commit 9c7763c

Please sign in to comment.