REDCapCAST/data-raw/data-upload-examples.R

6 lines
241 B
R
Raw Normal View History

mtcars |> dplyr::mutate(record_id=seq_len(n()),
name=rownames(mtcars)
) |>
dplyr::select(record_id,dplyr::everything()) |>
write.csv(here::here("data/mtcars_redcap.csv"),row.names = FALSE)