fm.set.confR Documentation

Reconfigure FlashR

Description

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.

Usage

fm.set.conf(conf.file)

fm.set.log.level(level)

fm.print.conf()

fm.print.features()

Arguments

conf.file

The configuration file.

level

a string, including "debug", "info", "warning", "error", "fatal".

Details

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".

Author(s)

Da Zheng <dzheng5@jhu.edu>

Examples

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()