uos_activpal.io.raw.ActivpalData¶
-
class
uos_activpal.io.raw.ActivpalData(file_path)[source]¶ An object to wrap activPAL data.
-
TODO()¶
See also
load_activpal_data- Returns the data from an activPAL data file as a tuple (metadata, signals).
-
__init__(file_path)[source]¶ Create an instance of an activpal_data object.
Parameters: file_path (str) – The path to an activPAL raw data file.
Methods
__init__(file_path)Create an instance of an activpal_data object. Attributes
datapandas.DataFrame – Depricated - use signals. metadatanamedtuple – The information extracted from the files header. rsspandas.Series – The Root Sum of Squares of the x, y, z axes. signalspandas.DataFrame – The sensor signals. timestampspandas.DatetimeIndex – The timestams of the signals. xpandas.Series – The signal from the x axis. ypandas.Series – The signal from the y axis. zpandas.Series – The signal from the z axis. -