TidierOrg / Tidier.jl

Meta-package for data analysis in Julia, modeled after the R tidyverse.
MIT License
515 stars 14 forks source link

Replace `coalesce.(..., false)` in call to `subset()` with keyword argument `skipmissing=true` #40

Closed kdpsingh closed 1 year ago

kdpsingh commented 1 year ago

This isn't a bug, but when I noticed that subset() was returning errors for missing values, I wrapped the function in a coalesce.() to replace the missing values with false to bring this in line with dplyr behavior.

I since have discovered that there is a keyword argument to handle this. To simplify the code, we should just use this keyword argument.