Skip to content
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

[WIP] MultiField_Stats Aggregation #16826

Closed
wants to merge 11 commits into from

Commits on May 3, 2016

  1. [WIP] Correlation Aggregation

    Adds the first Multi-Field metric agg that computes the Pearson product-moment correlation coefficient for a given list of numeric fields.
    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    c06d423 View commit details
    Browse the repository at this point in the history
  2. Refactor CorrelationAggregation to MultiFieldStatsAggregation

    This commit refactors the correlation specific aggregator to a more generic MultiFieldStats aggregator. It also adds the following statistics:
    
    * Field Count (to capture missing values - not yet implemented)
    * Mean
    * Variance
    * Skewness
    * Kurtosis
    * Variance-Covariance matrix
    * Correlation
    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    17292c5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bdd2a0f View commit details
    Browse the repository at this point in the history
  4. update MultiValuesSourceParser to parse a Map<String, Script> so each…

    … script has a unique name
    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    b90c73f View commit details
    Browse the repository at this point in the history
  5. add testEmptyAggregation

    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    a639a1c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    aaffc7e View commit details
    Browse the repository at this point in the history
  7. finish out tests

    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    0d9dea1 View commit details
    Browse the repository at this point in the history
  8. Updates from PR feedback

    This commit fixes the following:
    
    * Splits results from running statistics by way of mutable RunningStats and Immutable MultiFieldStatsResults classes
    * Updates output to print stats per field
    * Updates based on PR feedback
    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    476b801 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ce91e1f View commit details
    Browse the repository at this point in the history
  10. updates for elastic#17546

    nknize committed May 3, 2016
    Configuration menu
    Copy the full SHA
    2c4f087 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    071b20f View commit details
    Browse the repository at this point in the history