df_filter: 将数据集进行过滤

View source: R/03-df_rowOpers.R

df_filterR Documentation

将数据集进行过滤

Description

将数据集进行过滤

Usage

df_filter(
  data = iris,
  fieldName = c("Species", "Sepal.Width"),
  comparerSign = c("=", ">="),
  value_vec = c("'setosa'", "3.0"),
  comboLogi_vec = c("and", "and")
)

Arguments

data

数据框

fieldName

过滤字段

comparerSign

比例符号

value_vec

值设置

comboLogi_vec

逻辑连接条件

Value

返回值

Examples

df_filter();
df_filter(iris,fieldName = 'Sepal.Width',comparerSign = '=',value_vec = '3.5',comboLogi_vec = 'and');

takewiki/tsdo documentation built on July 5, 2023, 10:57 p.m.