mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2026-06-21 05:59:07 +02:00
linting
This commit is contained in:
parent
a0730cb41c
commit
9e33057c06
32 changed files with 456 additions and 340 deletions
|
|
@ -1,9 +1,11 @@
|
|||
mtcars_redcap <- mtcars |> dplyr::mutate(record_id=seq_len(dplyr::n()),
|
||||
name=rownames(mtcars)
|
||||
) |>
|
||||
dplyr::select(record_id,dplyr::everything())
|
||||
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)
|
||||
write.csv(here::here("data/mtcars_redcap.csv"), row.names = FALSE)
|
||||
|
||||
usethis::use_data(mtcars_redcap, overwrite = TRUE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue