Description Usage Arguments Value Details Author(s) See Also Examples
Functions for logger management.
1 2 3 4 5 | logger.start(txt = character(0), fname = NULL)
logger.completed()
logger.close()
|
txt |
Description to add to the log file. The words |
fname |
Name of the log file and/or console. Note that at most one file name can be specified. The function
|
None (invisible NULL
).
logger.start
initializes the logger and/or starts a new section. logger.completed
completes the last
(innermost) open section in the log. logger.close
deinitializes the logger. Note that after reinitialization
or deinitialization, the information about the current output file, as well as any open sections, is deleted.
Yassen Assenov
logger.isinitialized
1 2 3 4 5 | if (!logger.isinitialized())
logger.start(fname = NA)
logger.start("Tests for Significance")
logger.completed()
logger.close()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.