zenodo_fitbit_dataset¶
Module that provides classes to work with the fitbit dataset on the Zenodo platform collected by crowd sourcing.
- Available Interday datasets:
ActivityDataset
WeightDataset
SleepDataset
- Available Intraday datasets:
IntradayCaloriesDataset
IntradayIntensitiesDataset
IntradayMETsDataset
IntradayStepsDataset
-
class
tasrif.data_readers.zenodo_fitbit_dataset.
ZenodoFitbitDataset
(folder_path, table_name)¶ Base class for all Zenodo fitbit datasets
-
__init__
(folder_path, table_name)¶ Initializes an interday dataset reader with the input parameters.
- Parameters
folder_path (str) – Path to the Zenodo export folder_path 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
-