sFilter(tm)
sFilter()所属R语言包:tm
Statement Filter
声明过滤器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Filter meta data by user-defined statements.
筛选元数据的用户自定义报表。
用法----------Usage----------
sFilter(x, s)
参数----------Arguments----------
参数:x
A Corpus.
ACorpus。
参数:s
A statement of format "tag1 == 'expr1' & tag2 == 'expr2' & ...".
的声明格式"tag1 == 'expr1' & tag2 == 'expr2' & ..."。
Details
详细信息----------Details----------
The statement s models a simple query language. It consists of an expression as passed over to a data frame for subsetting. Tags in s represent meta data variables. Variables only available at document level are shifted up to the data frame if necessary. Note that the meta data tags for the slots Author, DateTimeStamp, Description, ID, Origin and Heading are author, datetimestamp, description, id, origin and heading, respectively, to avoid name conflicts.
的声明s一个简单的查询语言模型。它由一个表达式作为传递到一个数据框的子集。标签在s代表的元数据变量。仅可在文档级别的变量被上移,如果必要的数据框。请注意,元数据标签的插槽Author,DateTimeStamp,Description,ID,Origin和Heading是author ,datetimestamp,description,id,origin和heading,以避免名称冲突。
值----------Value----------
A logical vector to represent the subset of the DMetaData (extended for shifted up variables) data frame as specified by the statement.
逻辑向量代表DMetaData(延长向上移动指定的声明变量)的数据框的子集。
(作者)----------Author(s)----------
Ingo Feinerer
参见----------See Also----------
getFilters to list available filter functions.
getFilters列出可用的过滤功能。
实例----------Examples----------
data("crude")
sFilter(crude,
"id == '127' & heading == 'DIAMOND SHAMROCK (DIA) CUTS CRUDE PRICES'")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|