set_output_mode: Determine if visualizations are written to file, printed to...

Description Usage Arguments Value Examples

Description

This function initializes the output mode for the package to determine if visualizations should be written to file, printed to screen, or both.

Usage

1
set_output_mode(toggle = "both")

Arguments

toggle

Desired output mode. Determines how output plot data will be displayed. Options are "screen", "file", or "both".

Value

This function does not return a value.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 

#Don't save files, just print to the screen.
set_output_mode("screen")

#Print to the screen and save files to appropriate locations.
set_output_mode("both")

#Save files to appropriate locations, but do not print them to screen.
set_output_mode("file")


## End(Not run)

DEVis documentation built on May 2, 2019, 3:18 p.m.