use_multicore
enables multi-core usage of moveVis
by setting the maximum number of cores to be used. This can strongly increase the speed of creating frames.
use_disk
enables the usage of disk space for creating frames. This can prevent memory overload when creating frames for very large animations.
For most tasks, moveVis
is able to use multiple cores to increase computational times through parallelization. By default, multi-core usage is disabled. This function saves the number of cores that moveVis
should use to the global option "moveVis.n_cores"
that can be printed using getOption("moveVis.n_cores")
.
How much memory is needed to create frames depends on the frame resolution (number of pixels) and the number of frames. Depending on how much memory is available it can make sense to allow disk usage and set a maximum number of frames to be hold in memory that won't fill up the available memory completely.
moveVis
uses the parallel
package for parallelization.