1
나는 pmid를 가지고 있습니다. 제목, 저널, 이슈, 페이지 번호 및 요약과 같은 정보를 얻을 수 있는지 여부를 알고 싶습니다.pubmed에서 정보를 검색하는 방법
# Sample data
pmid<-c(8339401,8485120,8427851,3418853,3195585,2643302,7947591,8274474,8243847)
나는 pmid를 가지고 있습니다. 제목, 저널, 이슈, 페이지 번호 및 요약과 같은 정보를 얻을 수 있는지 여부를 알고 싶습니다.pubmed에서 정보를 검색하는 방법
# Sample data
pmid<-c(8339401,8485120,8427851,3418853,3195585,2643302,7947591,8274474,8243847)
이 시도 :
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)
은 또한 구글 :
이> 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."
가 설치 패키지를로드나요 : 예를 들어
RISmed? 'pmid'는 당신이 질문에서 보여준 것과 동일합니까? 그것은 나를 위해 일했습니다. –
문제가있는 곳을 찾았습니다. 그것이 오래되었거나 무엇을 모르기 때문에 나는 꾸러미를 다시 설치해야했다. 한 가지 질문은 모든 제목 앞에 모든 정보를 추가하는 것이 가능하다는 것입니다. 예를 들어, 첫 번째 종이, 제목, 문제, 볼륨, 페이지 및 요약. 그럼 그 아래, 다른 등? – nik
'data.frame (title = ArticleTitle (e), ... etc ..., stringsAsFactors = FALSE)'입니다. –