Skip to content

Commit

Permalink
Add top publishers
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Jul 2, 2024
1 parent 7ab67eb commit 8be5db4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/datacite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ For schemes only the first ten values with the highest occurrence are listed.
|work\_titles|57,359,160|
|works|52,863,283|

# Top ten publishers

| Publisher | Count |
|:------|------:|
|Geoscience Australia|5,948,695|
|SESAR|4,968,745|
|Zenodo|4,904,143|
|UNITE Community|2,859,190|
|arXiv|2,393,236|
|The Global Biodiversity Information Facility|2,270,374|
|figshare|1,774,442|
|Unpublished|1,087,504|
|Cambridge Crystallographic Data Centre|1,052,983|
|DSMZ|851,965|

## dc\_contributor\_name\_identifiers.name\_identifier\_scheme

Expand Down
4 changes: 4 additions & 0 deletions examples/datacite/doi-prefixes.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- List of DOI prefixes by number of works for each

SELECT SUBSTR(doi, 1, INSTR(doi, '/') - 1) AS prefix, Count(*) AS n
FROM dc_works GROUP BY prefix ORDER BY n DESC;
4 changes: 4 additions & 0 deletions examples/datacite/publisher-works.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- List of publishers and works ordered y number of works for each

SELECT publisher, Count(*) AS n
FROM dc_works GROUP BY publisher ORDER BY n DESC;

0 comments on commit 8be5db4

Please sign in to comment.