info
Description¶
This module contains all the information regarding:
- Data
- Structures of data
- How to access data
- Abbreviations
- AboutUs
- Contacts
- Links
- CiteUs
data(emgfile)
¶
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:
|
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
.
.
.
abbreviations()
¶
Print common abbreviations.
Examples:
>>> import openhdemg.library as emg
>>> emg.info().abbreviations()
"COV": "Coefficient of variation",
"DERT": "DERecruitment threshold",
"DD": "Double differential",
"DR": "Discharge rate",
"FSAMP": "Sampling frequency",
"IDR": "Instantaneous discharge rate",
"IED": "Inter electrode distance",
"IPTS": "Impulse train (decomposed source)",
"MU": "Motor units",
"MUAP": "MUs action potential",
"PNR": "Pulse to noise ratio",
"RT": "Recruitment threshold",
"SD": "Single differential",
"SIL": "Silhouette score",
"STA": "Spike-triggered average",
"XCC": "Cross-correlation coefficient"