heartandsole.core.fields.base.ActivityField.stream¶
- property ActivityField.stream¶
The column of the record DataFrame for this field.
Examples
>>> records = pd.DataFrame(data={'elevation': [1690.0, 1690.5, 1692.0]}) >>> act = Activity(records) >>> act.elevation.stream 0 1690.0 1 1690.5 2 1692.0 Name: elevation, dtype: float64
- Type