From b12d883e031960461f5877225f40de746fa9dd1c Mon Sep 17 00:00:00 2001 From: David <72822263+davidkonigsberg@users.noreply.github.com> Date: Fri, 21 Jan 2022 08:33:49 -0500 Subject: [PATCH 1/2] fix stat pont documentation --- btrdb/point.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/btrdb/point.py b/btrdb/point.py index 24a9d95..9ad900d 100644 --- a/btrdb/point.py +++ b/btrdb/point.py @@ -105,8 +105,8 @@ class StatPoint(object): Parameters ---------- time : int - The time in which the aggregated values represent in nanoseconds since - the Unix epoch. + The start time of the window which spans the aggregated values. Represented + in nanoseconds since the Unix epoch. min : float The minimum value in a time series within a specified range of time. mean : float @@ -157,7 +157,7 @@ def from_proto_list(cls, proto_list): @property def time(self): """ - The mean value of the time series point within a range of time + The stating time value of the time series within a range of time """ return self._time From b5ee940b577c2afa5748758f1136c90a1d20bca5 Mon Sep 17 00:00:00 2001 From: David <72822263+davidkonigsberg@users.noreply.github.com> Date: Fri, 21 Jan 2022 09:24:30 -0500 Subject: [PATCH 2/2] fix typo --- btrdb/point.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btrdb/point.py b/btrdb/point.py index 9ad900d..fa767f9 100644 --- a/btrdb/point.py +++ b/btrdb/point.py @@ -157,7 +157,7 @@ def from_proto_list(cls, proto_list): @property def time(self): """ - The stating time value of the time series within a range of time + The starting time of the time series within the stat point """ return self._time