Description Usage Arguments Value Examples
This function initializes the output mode for the package to determine if visualizations should be written to file, printed to screen, or both.
1 | set_output_mode(toggle = "both")
|
toggle |
Desired output mode. Determines how output plot data will be displayed. Options are "screen", "file", or "both". |
This function does not return a value.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.