eegprep.EEG_OPTIONS#

eegprep.EEG_OPTIONS = {'option_allmenus': 0, 'option_boundary99': 0, 'option_cachesize': 500, 'option_checkversion': 1, 'option_computeica': 1, 'option_donotusetoolboxes': 0, 'option_eegobject': 0, 'option_htmlingraphics': 1, 'option_memmapdata': 0, 'option_parallel': 0, 'option_rememberfolder': 1, 'option_saveasstruct': 1, 'option_savetwofiles': 0, 'option_saveversion6': 1, 'option_scaleicarms': 1, 'option_showadvanced': 0, 'option_showpendingplugins': 0, 'option_single': 1, 'option_storedisk': 0}#

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs

dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v

dict(**kwargs) -> new dictionary initialized with the name=value pairs

in the keyword argument list. For example: dict(one=1, two=2)