setStatisticOutputOptions
Set the specified options for the StatisticOutput object.
Syntax
sst.setStatisticOutputOptions(options)
Parameters
- options (type: dict) dictionary the contents specify the option as dictionary keys with the options value being specified by the corresponding dictionary value.
- returns none
Example
import sst
options = {
"filepath" : "stats.csv",
"separator" : ", "
}
sst.setStatisticOutputOptions(options)
Import
import sst