metrumresearchgroup / bbr

R interface for model and project management
https://metrumresearchgroup.github.io/bbr/
Other
23 stars 2 forks source link

[Feature] ask nm_join to get records that are blq #589

Open kylebaron opened 1 year ago

kylebaron commented 1 year ago

Example

Just an idea

data <- nm_join(mod, .superset = FALSE, .bql = TRUE)

This will tell nm_join() to keep records in the analysis data set that are BLQ (or BQL) in the output.

This could possibly be made more generic:

data <- nm_join(mod, .additional_rows = BLQ==1)
seth127 commented 1 year ago

Thanks Kyle. So this would just be filtering based on that BLQ (or BQL) column, right? I guess what I'm asking is: we wouldn't be deriving and new columns or anything, right?