Data Types#

Data types are used to store and process data in MyoVerse. They are used to store data in a structured way.

EMGData(input_data, sampling_frequency[, ...])

Class for storing EMG data.

KinematicsData(input_data, sampling_frequency)

Class for storing kinematics data.

VirtualHandKinematics(input_data, ...)

Class for storing virtual hand kinematics data from MyoGestic [1]_.

Base Data Class#

Important

If you wish to add a new data type make sure they inherit from the following base class.

_Data(raw_data, sampling_frequency, ...)

Base class for all data types.