slightly modified mtcars for upload testing

This commit is contained in:
Andreas Gammelgaard Damsbo 2024-02-26 15:07:17 +01:00
commit 77989a21ed
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,5 @@
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)