我有一套pmid。我想知道是否有可能获得标题,期刊,问题,页码和摘要等信息?
# Sample data
pmid<-c(8339401,8485120,8427851,3418853,3195585,2643302,7947591,8274474,8243847)
答案 0 :(得分:1)
试试这个:
library(RISmed)
e <- EUtilsGet(pmid)
ArticleTitle(e)
MedlineTA(e)
Volume(e)
Issue(e)
AbstractText(e)
MedlinePgn(e)
PMID(e) # same as pmid in question except character class
help(package = RISmed)
str(e)
google for:RISmed
例如:
> library(RISmed)
> e <- EUtilsGet(pmid)
> ArticleTitle(e)
[1] "LDL subclass phenotypes and the insulin resistance syndrome in women."
[2] "Genetics of LDL subclass phenotypes in women twins. Concordance, heritability, and commingling analysis."
[3] "Effect of hepatic lipase on LDL in normal men and those with coronary artery disease."
[4] "Low-density lipoprotein subclass patterns and risk of myocardial infarction."
[5] "Inheritance of low-density lipoprotein subclass patterns: results of complex segregation analysis."
[6] "Plasma triglyceride as a risk factor for coronary heart disease. The epidemiologic evidence and beyond."
[7] "Genetic predictors of FCHL in four large pedigrees. Influence of ApoB level major locus predicted genotype and LDL subclass phenotype."
[8] "Lack of association between sex hormones and Lp(a) concentrations in American and Finnish men."
[9] "Is microalbuminuria part of the prediabetic state? The Mexico City Diabetes Study."