Looking for author affiliations of a journal using pubmedR, I see that they are sometimes incomplete. Below an example:
library(pubmedR)
journal <- "Advances in Clinical Chemistry[JO] AND 2021:2021[DP]"
article_count <- pmQueryTotalCount(query = journal, api_key = NULL)
article_count$total_count
# [1] 21
article_request <- pmApiRequest(query = journal, limit = article_count$total_count, api_key = NULL)
dfa <- pmApi2df(article_request, format = "bibliometrix")
In the affiliations columns 'C1' or 'AF_UN' of the dataframe 'dfa', we can observe, e.g. for rows 2 and 3 (PMID 34044912 and 34044911), that the country does not appear although it is well mentioned in the corresponding Pubmed affiliations (Iceland and Saudi Arabia, respectively). https://pubmed.ncbi.nlm.nih.gov/34044912/ https://pubmed.ncbi.nlm.nih.gov/34044911/
How to retrieve exhaustive affiliations?