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
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
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.
The text was updated successfully, but these errors were encountered:
Motivation
title_j
andtitle_abbrev_j
. E.g.title_j
have notitle_abbrev_j
.How to reproduce the behavior
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_j
but with non nulltitle_abbrev_j
. In a sense,title_abbrev_j
does not add any specific/new informationFollowing 0., the priority seems to bee to standardise
title_j
. From that, we can populate thetitle_abbrev_j
disregarding it parsed value.The text was updated successfully, but these errors were encountered: