Indicators

In the following examples, publications are aggregated by funder, however this is just for demonstrative purposes. It is also possible to aggregate by any other facet field. For a complete list of fields that support facets, see the Supported data.

Output

Publications

Aggregated number of publications per entity

search publications
return funders aggregate count

Academic Impact

Citations

Number of citations per publication

search publications
return publications [doi + times_cited]
sort by times_cited

Aggregated number of citations

search publications
return funders aggregate citations_total
sort by citations_total

Citations average

Arithmetic mean of citations

search publications
return funders aggregate citations_avg
sort by citations_avg

Median citations

search publications
return funders aggregate citations_median
sort by citations_median

Recent citations

Recent citations per publication

search publications
return publications [doi + recent_citations]
sort by recent_citations

Note

Recent citation refers to the number of citations accrued in the last two year period. A single value is stored per document and the year window rolls over in July.

Aggregated number of recent citations

search publications
return funders aggregate recent_citations_total
sort by recent_citations_total

Relative citation ratio (RCR)

RCR per publication

search publications
return publications [doi + relative_citation_ratio]
sort by relative_citation_ratio

RCR average

Arithmetic mean of RCR

search publications
return funders aggregate rcr_avg
sort by rcr_avg

Field citation ration (FCR)

FCR per publication

search publications
return publications [doi + field_citation_ratio]
sort by field_citation_ratio

FCR average

Geometric mean of FCR

search publications
return funders aggregate fcr_gavg
sort by fcr_gavg

Cited (iX)

Number of publications with at least n=X citations, in the example below n=10

search publications
where times_cited >= 10
return funders

Altmetric

Altmetric Attention Score

Altmetric Attention Score per publication

search publications
return publications [doi + altmetric]
sort by altmetric

Altmetric median

Median Altmetric Attention Score

search publications
return funders aggregate altmetric_median
sort by altmetric_median

Collaboration

Single author

Number of publications with exactly one researcher.

search publications
where count(researchers) = 1
return funders

Collaborations

Number of publications with more than one researcher.

search publications
where count(researchers) > 1
return funders

International collaborations

Number of publications with more than one author and affiliations located in more than one country.

search publications
where count(researchers) > 1
and count(research_org_countries) > 1
return funders

Domestic collaborations

Number of publications with more than one author and more than one affiliation located in exactly one country.

search publications
where count(researchers) > 1
and count(research_org_countries) = 1
return funders

Hyper-authorship

Number of publications with at least n=X authors, in the example below the number of authors is n=25

search publications
where count(researchers) >= 25
return funders

Open Access

Closed

Number of publications where no available free copy has been identified.

search publications
where open_access_categories.name= "Closed"
return funders

All OA

Number of publications where article is freely available.

search publications
where open_access_categories.name= "All OA"
return funders

Pure Gold

Number of publications where a version of the record is free, under an open licence from a full open access journal.

search publications
where open_access_categories.name= "Pure Gold"
return funders

Hybrid

Number of publications where a version of the record is free, under an open licence in a paid-access journal.

search publications
where open_access_categories.name= "Hybrid"
return funders

Bronze

Number of publications where a version of the record is free on the publisher page, but without an open licence.

search publications
where open_access_categories.name= "Bronze"
return funders

Green - Published

Number of publications where a published version of the record is free, in an open access repository.

search publications
where open_access_categories.name= "Green, Published"
return funders

Green - Accepted

Number of publications where a accepted version of the record is free, in an open access repository.

search publications
where open_access_categories.name= "Green, Accepted"
return funders

Green - Submitted

Number of publications where a submitted version of the record is free in an open access repository.

search publications
where open_access_categories.name= "Green, Submitted"
return funders

Calculating composite indicators

The following examples showcase how different individual indicators can be combined to obtain further insight into the Dimensions data.

Note

These examples reflect the data at specific time point. Therefore we would expect the calculated values from the following queries to change over time, as the coverage of Dimensions data increases.

Calculating percentage of open access papers for a specific funder

In this example we first search for all publications funded by the National Cancer Institute (NCI) and filter for a specific type of open access. In this case we are selecting documents that have a version of the record that is free under an open licence from a full OA, also known as Gold Open Access.

search publications
where open_access_categories.name= "Pure Gold" and funders.name="National Cancer Institute"
return publications

From looking at the stats component of the returned data, we can see that there are 35858 documents that match this query. After that we need to determine what is the total publication output for the funder.

search publications
where funders.name="National Cancer Institute"
return publications

From the query above we get that there are 531281 publications associated with funding from the NCI. Finally by simply calculating the ratio between open access publications and all publications, we can conclude that 6.75% of the publications funded by the NCI are Gold Open Access.

Calculating publications per active grant for specific fields of research

The ratio of publications to active grants can provide insights across different disciplines and shed light on aspects obscured by funding amounts. To calculate this, it is necessary to perform a couple of queries and then manually calculate the ratio.

For the sake of simplicity, let us look into a 3 year funding period (2015-2017) for Monash University in Australia (grid.1002.3). Taking advantage of the fields of research categorisation system (FOR) we can line up specific fields of study across both publications and grants.

First, we search for all Monash University publications aggregated by field of research and published after the first active year of grant funding:

search publications
where research_orgs.id = "grid.1002.3" and year>=2015
return FOR

Next, we can select a couple of categories and store their publication output. After that we perform a similar search on those categories, but this time across grant content.

search grants
where research_orgs.id = "grid.1002.3"
and active_year in [2015:2017]
and FOR.name="1701 Psychology"
return active_year

As you can see from the query, we are looking at grants that were active between 2015 and 2017 for the same university in the field of psychology. The same can be done for another research area like pharmacology.

search grants
where research_orgs.id = "grid.1002.3"
and active_year in [2015:2017]
and FOR.name="1115 Pharmacology and Pharmaceutical Sciences"
return active_year

Based on these three queries we find that the number of grants for psychology and pharmacology are 193 and 148 respectively. However there is a significant difference in the number of publications, as we get 1896 for psychology and only 277 for pharmacology. Finally by calculating the ratio between grants and publication we can see in this case, that research in psychology produces approximately 5 times as many publications as its pharmacological counterpart.