-
Notifications
You must be signed in to change notification settings - Fork 34
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
Using Standard Deviation Aggregation #5
Comments
Hi @angocor, indeed, that one creates two columns of data, that is why Formula does not handle it correctly. We need to investigate this. |
Hi, please try the new release v1.0.2 ! |
HI @tcharlot-datasweet, thanks for the update, derivation aggregation works now, same for percentiles, with the following syntax in formula:
maybe it will be a good improvement (to cover all possible similar cases and functionality) in future to retrieve them in a formula like: the reason is that for some of the aggregations elasticsearch return more fields (that currently inaccessible from kibana UI afaik), example with Standard Deviation, response bucket: as you can see bucket beside std_deviation_bounds[] returns also variance, sum_of_squares and others that will be nice to have in the formula, with logic when aggX becoming array accessible from the formula retrieving of such values it is just a matter of proper naming and parentness, like: aggX[sum_of_squares] or aggX[std_deviation_bounds.lower] I can try to look, maybe I can help with such implementation if you point me on a proper place to do so (to save time). also, I can create dedicated "feature" issue if required as main subj resolved now. Regards and thanks a lot for your work. |
Hi @v01t Actually formula occurs on the array generated by kibana (tabify). This array is based on aggConfig object. For the formula syntax, i agree with you, it's clearer to write We will be happy if you want to contribute to this project :) Regards |
This plugin is phenomenal! Thank you for your work. |
Hi @itamarm10 , because those aggs (percentile and StDev) give you more than one values, you have to write a dedicated Formula input, following this syntax (examples below) : |
Thank you very much for your quick response! |
Hello.
I am trying to create a Datasweet formula that uses a Standard Deviation aggregation as input. However it seems that Datasweet Formula is not capable of using that value.
Is there support for Standard Deviation in Datasweet Formula?.
I am using Kibana and Elasticsearch version 6.2.1 and installed Datasweet Formula datasweet_formula-1.0.1_kibana-6.2.1.zip
The text was updated successfully, but these errors were encountered: