Skip to content

Instantly share code, notes, and snippets.

@cbnumbers
Created March 9, 2020 20:36
Show Gist options
  • Save cbnumbers/844d51d3fc0534ee617a9d42fd317950 to your computer and use it in GitHub Desktop.
Save cbnumbers/844d51d3fc0534ee617a9d42fd317950 to your computer and use it in GitHub Desktop.
optional filter thing
comp_df_filtered <- comp_df %>%
filter(SERVICE_AUTO_CHARGE__C == auto_charge, SERVICE_RATE_TYPE__C == CO_Service$APPLY_RATE_PER_CONTAINER__C,
TRUE ==
((QUANTITY__C == CO_Service$QUANTITY_REQUESTED__C & FREQUENCY__C == CO_Service$FREQUENCY__C & OCCURS__C == occurs) |
(is.na(QUANTITY__C) & FREQUENCY__C == CO_Service$FREQUENCY__C & OCCURS__C == occurs) |
(is.na(QUANTITY__C) & FREQUENCY__C == "" & OCCURS__C == occurs) |
(is.na(QUANTITY__C) & FREQUENCY__C == "" & OCCURS__C == "")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment