ncbiPubmed(genomes)
ncbiPubmed()所属R语言包:genomes
NCBI PubMed database
NCBI的医学数据库
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Searches the PubMed database at NCBI and returns a short citation with author, year, title, journal and published date.
搜索在NCBI的PubMed数据库,并返回一个简短的引文与作者,年份,标题,杂志和出版日期。
用法----------Usage----------
ncbiPubmed(term)
参数----------Arguments----------
参数:term
Any valid combination of Entrez search terms or a vector of pubmed IDs
任何有效的组合Entrez的搜索字词或医学的ID向量
Details
详情----------Details----------
The function uses either Epost (for numeric pubmed IDs) or Esearch to query the PubMed database and then parses the XML summary to return a short citation
该功能使用Epost(数字期刊的ID)或Esearch查询PubMed数据库,然后解析XML总结返回一个短引文
值----------Value----------
A data.frame with 9 columns
与9列数据框
参数:<code>pmid</code>
PubMed id
医学ID
参数:<code>authors</code>
first 3 author names
第3作者姓名
参数:<code>year</code>
year journal was published
年期刊出版
参数:<code>title</code>
title
标题
参数:<code>journal</code>
journal name
期刊名称
参数:<code>volume</code>
volume number
卷数
参数:<code>pages</code>
pages
网页
参数:<code>pubdate</code>
date journal was published (from PubDate tag)
日杂志发表的pubDate标签
参数:<code>artdate</code>
date electronic copy was available (from ArticleDate tag)
最新的电子副本(ArticleDate标签)
作者(S)----------Author(s)----------
Chris Stubben
参见----------See Also----------
pub for complete microbial genome publications
pub完整的微生物基因组的出版物
举例----------Examples----------
data(lproks)
yp<-subset(lproks, name %like% 'Yersinia*CO92')
# comma-separated list[逗号分隔的列表]
yp$publication
ncbiPubmed(yp$publication)
# or vector[或向量]
ncbiPubmed( c(7542800, 7569993))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|