Skip to content

Commit

Permalink
Fixed save_results_csv() (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
wleoncio committed Apr 29, 2024
1 parent 44212dc commit df18ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/EMJMCMC2016-method-save_results_csv.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
EMJMCMC2016$methods(
# save big.data results, if the latter are available
save_results_csv = function(statistics1, filename) {
write.bigmemory::big.matrix(x = statistics1, filename = filename)
save_results_csv = function(statistics1, filename = tmpfile()) {
bigmemory::write.big.matrix(x = statistics1, filename = filename)
}
)

0 comments on commit df18ac3

Please sign in to comment.