Skip to content

fix stat point documentation #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions btrdb/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 starting time of the time series within the stat point
"""
return self._time

Expand Down