# NOT RUN {
iris %>% filter_dt(Sepal.Length > 7)
iris %>% filter_dt(Sepal.Length == max(Sepal.Length))
# comma is not supported in tidyfst after v0.9.8
# which means you can't use:
# }
# NOT RUN {
iris %>% filter_dt(Sepal.Length > 7, Sepal.Width > 3)
# }
# NOT RUN {
# use following code instead
iris %>% filter_dt(Sepal.Length > 7 & Sepal.Width > 3)
# }
Run the code above in your browser using DataLab