specparam.io.models.save_event

specparam.io.models.save_event(event, file_name, file_path=None, append=False, save_results=False, save_settings=False, save_data=False)[source]

Save out results and/or settings from event object. Saves out to a JSON file.

Parameters:
eventSpectralTimeEventModel

Object to save data from.

file_namestr or FileObject

File to save data to.

file_pathstr, optional

Path to directory to load from. If None, saves to current directory.

appendbool, optional, default: False

Whether to append to an existing file, if available. This option is only valid (and only used) if ‘file_name’ is a str.

save_resultsbool, optional

Whether to save out model fit results.

save_settingsbool, optional

Whether to save out settings.

save_databool, optional

Whether to save out power spectra data.

Raises:
ValueError

If the data or save file specified are not understood.