Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple title_j for the same ISSN/ISSNe #6

Closed
cverluise opened this issue Nov 5, 2019 · 1 comment
Closed

Multiple title_j for the same ISSN/ISSNe #6

cverluise opened this issue Nov 5, 2019 · 1 comment
Assignees
Labels
beta good first issue Good for newcomers

Comments

@cverluise
Copy link
Owner

cverluise commented Nov 5, 2019

Issue

Some npl publications sharing the same ISSN(e) have different title_j (journal title). E.g

ISSN journal_titles
0946-2171 Applied Physics B,Applied Physics B Laser and Optics,Applied Physics B Lasers and Optics,Applied Physics B: Lasers and Optics
0003-021X Journal of the American Oil Chemists Society,Journal of the American Oil Chemists' Society,Journal of the American Oil Chemists’ Society
0236-5731 Journal of Radioanalytical and Nuclear Chemistry Articles,Journal of Radioanalytical and Nuclear Chemistry Letters,Journal of Radioanalytical and Nuclear Chemistry

Quantitively, this seems to be the case for 0.5-1% of npl_publications_id in the beta.

How to reproduce the behaviour

WITH
  tmp AS (
  SELECT
    title_j,
    ISSN,
    COUNT(npl_publn_id ) AS count
  FROM
    `npl-parsing.patcit.beta`
  WHERE
    ISSN IS NOT NULL
    AND ISSN!=""
  GROUP BY
    title_j,
    ISSN )
SELECT
  ISSN,
  STRING_AGG(title_j) AS journal_titles,
  SUM(count) AS sum,
  COUNT(ISSN) AS count
FROM
  tmp
GROUP BY
  ISSN
ORDER BY
  count DESC

Ideas/ solutions

title_j could be standardized using the title_proper reported at https://portal.issn.org/

Any suggestions welcome

@cverluise cverluise self-assigned this Nov 5, 2019
@cverluise cverluise added beta enhancement New feature or request labels Nov 5, 2019
@cverluise cverluise added this to To do in Contributors via automation Nov 5, 2019
@cverluise cverluise changed the title Multiple title_j for the same ISSN Multiple title_j for the same ISSN/ISSNe Nov 5, 2019
@cverluise cverluise added good first issue Good for newcomers and removed enhancement New feature or request labels Nov 6, 2019
@cverluise
Copy link
Owner Author

Actually, this is due to the fact that even when there is a match, the parsed attributes are not overwritten by crossref equivalents.

Also, this is a nice feature as we use it to propagate ISSN out of doi matches in v0.2.

I close the issue as this is not a real issue

Contributors automation moved this from To do to Done Mar 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
beta good first issue Good for newcomers
Projects
Contributors
  
Done
Development

No branches or pull requests

1 participant