-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
New histogram's chart value: "weighted mean" #838
Labels
Comments
Closed
👍 |
We have decided to set a policy of not modifying numeric values client side in Kibana 4. The elasticsearch team is looking into ways of accomplishing this on the server side. Once that work gathers some steam we will work on integrating it into Kibana 4. |
+1. |
+1 |
w33ble
pushed a commit
to w33ble/kibana
that referenced
this issue
Sep 13, 2018
* Added selection to workpad loader * Added download button back to workpad row * Fixed delete button * Moved comment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there.
I would need to add a new chart value in histogram: "weighted mean".
That would draws a more precised mean graph than with a chart value set to "mean".
That graph needs two input values instead of only one: "sum" and "count".
Let me explain the need with this example:
My data:
A 5 minutes interval chart (weighted mean) on "sum"/"count" values would generate this plots serie:
You can compare with the result of a 5 minutes interval chart (mean) on "mean" value:
For implementation, that would use 2 facets:
And then, for each "sum" facet results, kibana divides the total of "sum" by the total of "count".
Do you think I'm thinking right?
Regards,
Benoit
The text was updated successfully, but these errors were encountered: