Print a description of the emgfile data structure.
Print a detailed description of the emgfile data structure and of how
to access the contained elements.
PARAMETER |
DESCRIPTION |
emgfile |
The dictionary containing the emgfile.
TYPE:
dict
|
Examples:
>>> import openhdemg.library as emg
>>> emgfile = emg.askopenfile(filesource="DEMUSE")
>>> emg.info().data(emgfile)
emgfile type is:
<class 'dict'>
emgfile keys are:
dict_keys(['SOURCE', 'FILENAME', 'RAW_SIGNAL', 'REF_SIGNAL', 'ACCURACY', 'IPTS', 'MUPULSES', 'FSAMP', 'IED', 'EMG_LENGTH', 'NUMBER_OF_MUS', 'BINARY_MUS_FIRING', 'EXTRAS'])
Any key can be acced as emgfile[key].
emgfile['SOURCE'] is a <class 'str'> of value:
DEMUSE
.
.
.