We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code:
rate = Meter() for i in range(int(65/0.05)): rate.mark() time.sleep(0.05) print(rate.one_minute_rate) print(rate.mean_rate)
yields:
12.744700289590714 19.916839105797937
Why does the one-minute moving average differs from the average over the first minute?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code:
yields:
Why does the one-minute moving average differs from the average over the first minute?
The text was updated successfully, but these errors were encountered: