get_mcmc_filenames {beautier} | R Documentation |
Get the filenames stored in an MCMC.
Description
If a filename is set to an empty string, to indicate a certain log file need not be created, this (non-)filename will not be returned.
Usage
get_mcmc_filenames(mcmc)
Arguments
mcmc |
one MCMC.
Use |
Value
the filenames stored in an MCMC
Author(s)
Richèl J.C. Bilderbeek
Examples
check_empty_beautier_folder()
mcmc <- create_mcmc()
mcmc$tracelog$filename <- "/home/john/trace.log"
mcmc$screenlog$filename <- "/home/john/screen.log"
mcmc$treelog$filename <- "/home/john/tree.log"
# 3 filenames
filenames <- get_mcmc_filenames(mcmc)
# If there is no need to write to the screenlog file ...
mcmc$screenlog$filename <- ""
# 2 filenames
# ... one file less will be created
filenames <- get_mcmc_filenames(mcmc)
check_empty_beautier_folder()
[Package beautier version 2.6.12 Index]