FREYA Logo FREYA WP2 User Story 1 As a data center, I want to see the citations of publications that use my repository for the underlying data, so that I can demonstrate the impact of our repository.

It is important for repositories of scientific data to monitor and report on the impact of the data they store. One useful proxy of that impact are citations of publications accompanying the deposited data.

This notebook uses the DataCite GraphQL API to retrieve data (a.k.a. works) and their citations from three different repositories: PANGAEA, DRYAD and Global Biodiversity Information Facility, using polarstern, butterfly and Lake Malawi as example queries respectively.

Goal: By the end of this notebook you should be able to:

Install libraries and prepare GraphQL client

Define and run the GraphQL query

Define the GraphQL to find all works from PANGAEA, DRYAD and Global Biodiversity Information Facility (GBIF) repositories using keywords: polarstern, butterfly and Lake Malawi respectively.

Run the above query via the GraphQL client

Display the number of works

For each repository, display the total number of works matching the respective query.

Display the number of citations of the works

For each repository, display the total number of citations of works matching the respective query.

Plot the number of works per year

For each repository, display a bar plot showing the counts of works matching the respective query, across years.

Display works in tabular format

For each repository and query, display the works in a html table, including the number of their citations, views and downloads.

Download works in BibTeX format

Download the works in a single BibTeX file per repository

Define and run GraphQL query to retrieve citations for a single work

The query will retrieve citations for IUCN Red List assessment occurrence data for freshwater species native to the Lake Malawi/Nyasa/Niassa Catchment.

Run the above query

Display the number of citations

Display the number of citations of IUCN Red List assessment occurrence data for freshwater species native to the Lake Malawi/Nyasa/Niassa Catchment.

Display citations in tabular format

Display citations of IUCN Red List assessment occurrence data for freshwater species native to the Lake Malawi/Nyasa/Niassa Catchment in a html table, including the number of their respective citations, views and downloads.

Download citations in BibTeX format

Download the citations of IUCN Red List assessment occurrence data for freshwater species native to the Lake Malawi/Nyasa/Niassa Catchment in a single BibTeX file.