msearch(RMendeley)
msearch()所属R语言包:RMendeley
msearch.R Search Method (Public Method)
msearch.R搜索方法(公共法)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
msearch.R Search Method (Public Method)
msearch.R搜索方法(公共法)
用法----------Usage----------
msearch(query, page = NA, numItems = 1000L,
key = getOption("MendeleyKey", stop("need an API key for Mendeley")),
curl = getCurlHandle(), ...)
参数----------Arguments----------
参数:query
any search query. Can use the options: authors, year, title, published_in, followed by colons e.g. authors:Alistair Boettiger published_in:Science
任何搜索查询。可以使用的选项:作者,年份,标题,published_in,然后用冒号分隔,例如作者:阿利斯泰尔伯蒂格published_in:科学
参数:page
number pages to return (optional)
数页返回(可选)
参数:numItems
number of hits to return (optional)
返回的点击数(可选)
参数:key
Mendeley API key (otherwise will try and load from package)
Mendeley API密钥(否则会尝试加载包)
参数:...
optional additional curl options (debugging tools mostly)
可选的附加卷曲选项(调试工具大多)
参数:curl
If using in a loop, call getCurlHandle() first and pass the returned value in here (avoids unnecessary footprint)
如果使用在一个循环中,调用getCurlHandle(),并通过在这里的返回值(避免不必要的足迹)
Details
详细信息----------Details----------
see http://apidocs.mendeley.com/home/public-resources/search-terms
看到http://apidocs.mendeley.com/home/public-resources/search-terms
值----------Value----------
all results matching the query for the author
笔者查询匹配的所有结果
实例----------Examples----------
## Not run: [#不运行:]
a = msearch("bob", , 20)
b = msearch("bob", 4, 20)
d = msearch("authors:Alistair Boettiger published_in:Science")
# Get the DOIs of Journal of Ecology hits (returns first 999 exact matches)[取得的生态命中(返回第999精确匹配的DOI的)。]
all <- msearch("published_in:\"Journal of Ecology\"")
dois <- sapply(all, function(x) x$doi)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|