View source: R/03-df_rowOpers.R
df_filter | R Documentation |
将数据集进行过滤
df_filter(
data = iris,
fieldName = c("Species", "Sepal.Width"),
comparerSign = c("=", ">="),
value_vec = c("'setosa'", "3.0"),
comboLogi_vec = c("and", "and")
)
data |
数据框 |
fieldName |
过滤字段 |
comparerSign |
比例符号 |
value_vec |
值设置 |
comboLogi_vec |
逻辑连接条件 |
返回值
df_filter();
df_filter(iris,fieldName = 'Sepal.Width',comparerSign = '=',value_vec = '3.5',comboLogi_vec = 'and');
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.