Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 543 Bytes

filter.md

File metadata and controls

33 lines (22 loc) · 543 Bytes
description
Similar to a grep for limiting a dataframe to rows containing a substring

Filter & Filter Not

Example

./owlcheck \
-ds "dataset_name" \
-rd "2018-07-23 10" \
-d "," \
-f "/Users/Documents/file.csv" \
-filter "2018-07-23"

{% hint style="info" %} -filter "2018-07-23"

If file.csv contained multiple strings, but you only wanted rows containing "2018-07-23" {% endhint %}

The inverse

{% hint style="info" %} -filternot "2018-07-23"

To exclude rows containing "2018-07-23" {% endhint %}