Learn R Programming

riemtan (version 0.2.5)

reset_parallel_plan: Reset Parallel Plan to Sequential

Description

Convenience function to reset parallel processing to sequential mode. Equivalent to set_parallel_plan("sequential").

Usage

reset_parallel_plan()

Arguments

Value

Invisibly returns the future plan object.

See Also

set_parallel_plan()

Examples

Run this code
if (FALSE) {
# Enable parallel processing
set_parallel_plan("multisession", workers = 4)

# Reset to sequential
reset_parallel_plan()
}

Run the code above in your browser using DataLab