第一作者发表在Bioinformatics杂志上论文数top10
Page content
第一作者发表在Bioinformatics杂志上论文数top10 by 方圆之处
再写几篇可以冲到前5
使用代码如下:
library(pubmedR)
api_key = NULL
# pubmed一次只能下载小于1万条记录,这里分成两份
query = '("Bioinformatics (Oxford, England)"[Journal]) AND (("1998"[Date - Publication] : "2014"[Date - Publication]))'
res <- pmQueryTotalCount(query = query, api_key = api_key)
D1 <- pmApiRequest(query = query, limit = res$total_count, api_key = NULL)
query = '("Bioinformatics (Oxford, England)"[Journal]) AND (("2015"[Date - Publication] : "2023"[Date - Publication]))'
res <- pmQueryTotalCount(query = query, api_key = api_key)
D2 <- pmApiRequest(query = query, limit = res$total_count, api_key = NULL)
m1 = pmApi2df(D1)
m2 = pmApi2df(D2)
m = rbind(m1, m2)
df = df[df$DT == "JOURNAL ARTICLE", ]
fa = gsub(";.*$", "", df$AF)
sort(table(fa))
原文链接