Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import_instruments fail after dplyr #67

Open
TIngchangW opened this issue Oct 5, 2023 · 0 comments
Open

import_instruments fail after dplyr #67

TIngchangW opened this issue Oct 5, 2023 · 0 comments

Comments

@TIngchangW
Copy link

The function uses:
drop_dot_one <- redcap[, c(meta, curr_instr_idx)] %>%
select(-ends_with(".1"))_
to select the variables names in instrument. However, duplicated colunmns are not appended by '.1' now in dplyr. I suggest the following changes:
drop_dot_one <- redcap[, unique(c(meta, curr_instr_idx))]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant