withings_dataset

Module that provides classes to work with a exported withings dataset
Available datasets:
  • Activities

  • Sleep and Sleep State

  • Physical Activity (distance, calories, heart-rate, steps)

  • Blood Oxygen (SpO2)

  • Elevation, Horizontal and Vertical Radius

  • Blood Pressure

  • GPS (Lat, Long) and GPS Speed

  • Lap Pool

  • Quality Score

  • Altitude

  • Height and Weight

class tasrif.data_readers.withings_dataset.WithingsDataset(file_name, table_name)

Base class for all withings datasets

__init__(file_name, table_name)

Initializes a dataset reader with the input parameters.

Parameters
  • file_name (str) – Path to the withings export file containing data.

  • table_name (str) – The table to extract data from.

process(*data_frames)

Function that runs validation hooks and processes the input data_frames.

Parameters

*data_frames (list of pd.DataFrame) – Variable number of pandas dataframes to be processed

Returns

Output of _process method