diff --git a/articles/Fixed_obj_fun.html b/articles/Fixed_obj_fun.html index 74307627..ecff0c5f 100644 --- a/articles/Fixed_obj_fun.html +++ b/articles/Fixed_obj_fun.html @@ -191,9 +191,9 @@

Exporting objects example## # A tibble: 3 × 6 ## N p REPLICATIONS SIM_TIME SEED COMPLETED ## <dbl> <dbl> <dbl> <chr> <int> <chr> -## 1 10 0.038 1000 0.24s 525310970 Fri Aug 16 15:26:48 2024 -## 2 20 0.05 1000 0.24s 529914981 Fri Aug 16 15:26:48 2024 -## 3 30 0.056 1000 0.26s 602604143 Fri Aug 16 15:26:49 2024 +## 1 10 0.038 1000 0.22s 525310970 Fri Aug 16 15:33:43 2024 +## 2 20 0.05 1000 0.22s 529914981 Fri Aug 16 15:33:44 2024 +## 3 30 0.056 1000 0.24s 602604143 Fri Aug 16 15:33:44 2024

By placing objects in a list and passing this to fixed_objects, the objects are safely exported to all relevant functions. Furthermore, running this code in parallel will also diff --git a/articles/Saving-results.html b/articles/Saving-results.html index fa706a8d..34fd0730 100644 --- a/articles/Saving-results.html +++ b/articles/Saving-results.html @@ -140,17 +140,17 @@

Option: save = TRUE (Defa ## Design: 1/3; RAM Used: 67.7 Mb; Replications: 1000; Total Time: 0.00s ## Conditions: N=10 ## -## Design: 2/3; RAM Used: 68.7 Mb; Replications: 1000; Total Time: 0.19s +## Design: 2/3; RAM Used: 68.7 Mb; Replications: 1000; Total Time: 0.18s ## Conditions: N=20 ## -## Design: 3/3; RAM Used: 68.7 Mb; Replications: 1000; Total Time: 0.36s +## Design: 3/3; RAM Used: 68.7 Mb; Replications: 1000; Total Time: 0.35s ## Conditions: N=30 ##

Check that temporary file still exists.

 files <- dir()
 files[grepl('SIMDESIGN', files)]
-
## [1] "SIMDESIGN-TEMPFILE_fv-az2031-206.rds"
+
## [1] "SIMDESIGN-TEMPFILE_fv-az566-772.rds"

Notice here that the simulation stopped at 67% because the third design condition threw too many consecutive errors (this is a built-in fail-safe in SimDesign). To imitate a type of crash/power @@ -170,7 +170,7 @@

Option: save = TRUE (Defa res <- runSimulation(Design, replications = 1000, save=TRUE, filename='my-simple-sim', generate=Generate, analyse=Analyse, summarise=Summarise)
## 
-## Design: 3/3;   Replications: 1000;   Total Time: 0.36s 
+## Design: 3/3;   Replications: 1000;   Total Time: 0.35s 
 ##  Conditions: N=30
 ## 

Check which files exist.

@@ -262,10 +262,10 @@