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
Since WoS is inconsistent in whether it records include author full names, some papers have authors_full and others don't. The authors property will return the value of authors_full if it's available; otherwise, it returns authors_init.
>>>paper.authors
[('MCMURRICH', 'JAMES PLAYFAIR'),...]
>>>delpaper.authors_full>>>paper.authors# authors_full is no longer available.
[('MCMURRICH', 'J P'),...]
So there are quite a few things that we could do to match full-name and initial-name representations, depending on the use-case. Here are some places we could do the matching:
When we index a Corpus by authors;
In network-building methods that evaluate author names (e.g. coauthors);
???
Could you say more about the use-cases that you have in mind? That might help us hone in on a good solution. Thanks for your help!
Is it possible to merge name depending on the formatting in the the imported file ?
ex : Doe, J = Doe, John
The text was updated successfully, but these errors were encountered: