Skip to content

Commit

Permalink
remove rev() on eav column names
Browse files Browse the repository at this point in the history
ref #145
  • Loading branch information
wibeasley committed Jan 20, 2020
1 parent 26b2940 commit 234b838
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions R/redcap-read-oneshot-eav.R
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@ redcap_read_oneshot_eav <- function(
dplyr::select(field_name = .data$export_field_name) %>%
dplyr::filter(grepl("^\\w+?_complete$", .data$field_name))
) %>%
dplyr::pull(.data$field_name) %>%
rev()
dplyr::pull(.data$field_name) #%>% rev()

ds_eav_2 <-
ds_eav %>%
Expand Down

0 comments on commit 234b838

Please sign in to comment.