You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
J Mater Sci,JOURNAL OF MATERIALS SCIENCE,Journal of Materials Science
About half of the npl_publn with a title_j have no title_abbrev_j.
How to reproduce the behavior
See below
Details
SELECT
title_j,
count(distinct(title_abbrev_j)) as count_distinct,
STRING_AGG(distinct(title_abbrev_j)) as title_abbrev_j
FROM`npl-parsing.patcit.beta`WHERE
title_j is not nullGROUP BY
title_j
ORDER BY
count_distinct
DESC
See below
Details
SELECTcount(distinct(npl_publn_id)) as count_distinct
FROM`npl-parsing.patcit.beta`WHERE
title_j is not nulland title_abbrev_j is NULL# comment and title_abbrev_j is NULL for denom
Feature request
Decide whether we should keep the title_abbrev_j. Note that, at least in the beta, there is no npl_publn with null title_j but with non null title_abbrev_j. In a sense, title_abbrev_j does not add any specific/new information
Following 0., the priority seems to bee to standardise title_j. From that, we can populate the title_abbrev_j disregarding it parsed value.
Motivation
title_jandtitle_abbrev_j. E.g.title_jhave notitle_abbrev_j.How to reproduce the behavior
Details
Details
Feature request
Decide whether we should keep the
title_abbrev_j. Note that, at least in the beta, there is no npl_publn with nulltitle_jbut with non nulltitle_abbrev_j. In a sense,title_abbrev_jdoes not add any specific/new informationFollowing 0., the priority seems to bee to standardise
title_j. From that, we can populate thetitle_abbrev_jdisregarding it parsed value.