fm.set.conf | R Documentation |
fm.set.conf
reconfigures FlashR with the settings in
the configuration file. fm.print.conf
prints the current configurations.
fm.set.log.level
sets what levels of messages should be logged.
fm.print.features
prints the features compiled into FlashR.
fm.set.conf(conf.file) fm.set.log.level(level) fm.print.conf() fm.print.features()
conf.file |
The configuration file. |
level |
a string, including "debug", "info", "warning", "error", "fatal". |
The configuration file contains a list of key-value pairs. Each line in the file is a key-value pair in the form of "key_name=value".
Da Zheng <dzheng5@jhu.edu>
fm.set.conf("conf/run_test.txt") # configure FlashR with the config file conf/run_test.txt fm.set.log.level("info") # FlashR prints more information when it runs. fm.print.conf() fm.print.features()