Skip to content

Commit

Permalink
attatch correct package
Browse files Browse the repository at this point in the history
  • Loading branch information
mitokic committed Aug 2, 2024
1 parent 6e493fb commit 97aae40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_write_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ write_data_type <- function(x,
rds = saveRDS(x, path),
parquet = arrow::write_parquet(x, path),
csv = vroom::vroom_write(x, path, delim = ",", progress = FALSE),
log = base::write.csv(x, path, row.names = FALSE),
log = utils::write.csv(x, path, row.names = FALSE),
qs = qs::qsave(x, path)
)
}
Expand Down

0 comments on commit 97aae40

Please sign in to comment.