mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 13:30:23 +01:00
10 lines
332 B
R
10 lines
332 B
R
mtcars_redcap <- mtcars |> dplyr::mutate(record_id=seq_len(dplyr::n()),
|
|
name=rownames(mtcars)
|
|
) |>
|
|
dplyr::select(record_id,dplyr::everything())
|
|
|
|
mtcars_redcap |>
|
|
write.csv(here::here("data/mtcars_redcap.csv"),row.names = FALSE)
|
|
|
|
usethis::use_data(mtcars_redcap, overwrite = TRUE)
|