grepSDFset(ChemmineR)
grepSDFset()所属R语言包:ChemmineR
String search in SDFset
在SDFset字符串搜索
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convenience grep function for string searching in SDFset containers.
方便grep函数搜索字符串SDFset容器。
用法----------Usage----------
grepSDFset(pattern, x, field = "datablock", mode = "subset", ignore.case = TRUE, ...)
参数----------Arguments----------
参数:pattern
search pattern
搜索模式
参数:x
SDFset
SDFset
参数:field
delimits search to specific section in SDF; can be header, atomblock, bondblock or datablock
划搜索自卫队的特定部分,可以是header,atomblock,bondblock或datablock
参数:mode
if mode = "index", then the match positions are returned as vector; if mode = "subset", a list with SDF components is returned where every entry has at least one query match
如果mode = "index",然后匹配的位置返回为向量;如果mode = "subset",listSDF组件返回每个条目至少有一个查询匹配
参数:ignore.case
TRUE turns off case sensitivity
TRUE关闭大小写
参数:...
option to pass on additional arguments
通过对额外的参数选项
Details
详情----------Details----------
...
...
值----------Value----------
参数:numeric
index vector where the name field contains the component positions in the SDFset and the values the row positions in each sub-component.
索引向量名称“字段中包含组件在SDFset和值排在每个子组件的位置,位置。
参数:list
if mode = "subset"
如果mode = "subset"
作者(S)----------Author(s)----------
Thomas Girke
参考文献----------References----------
参见----------See Also----------
Class: SDFset
类别:SDFset
举例----------Examples----------
## Instances of SDFset class[#实例SDFset类,]
data(sdfsample)
sdfset <- sdfsample
## String Searching in SDFset[#字符串搜索在SDFset]
q <- grepSDFset("65000", sdfset, field="datablock", mode="subset")
as(q, "SDFset")
grepSDFset("65000", sdfset, field="datablock", mode="index")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|