verboseFn | R Documentation |
returns a printing function to be used with in the script
verboseFn(verbose)
verbose |
boolean, determines whether the output going be printed or not |
print function
# Prints output
verbosePrint <- verboseFn(TRUE)
verbosePrint("Hello World!")
# > "Hello World!"
# Does not print
verbosePrint <- verboseFn(FALSE)
verbosePrint("Hello World!")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.