Skip to content

Commit 312de82

Browse files
updates -readr
1 parent b37d195 commit 312de82

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

R/ending.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ get_param_type <- function(x) {
1313

1414
save_calibrated_csv <- function(calib_object) {
1515
long_calib <- get_long_calibrated_proposal(calib_object)
16-
readr::write_csv(long_calib, get_calibrated_csv_path(calib_object))
16+
write.csv(long_calib, get_calibrated_csv_path(calib_object), row.names = FALSE)
1717
}
1818

1919
wrap_up_calibration <- function(calib_object) {
@@ -27,4 +27,3 @@ wrap_up_calibration <- function(calib_object) {
2727
message("Calibration complete")
2828
print_log(calib_object)
2929
}
30-

R/proposal.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,3 @@ update_default_proposal <- function(calib_object, job_results) {
128128
}
129129
mutate_default_proposal(calib_object, default_proposal)
130130
}
131-

R/wave.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ increment_wave <- function(calib_object) {
5050
make_directories(calib_object)
5151
calib_object
5252
}
53-

0 commit comments

Comments
 (0)