Sha256: 0ce13b7c3b7ec4d6bde21c07e53e67925f44c38d80f8bef25186e2e567883368
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
# Athenian::CalculatedLinearMetricValues ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **date** | **Date** | Where you should relate the metric value to on the time axis. | | | **values** | [**Array<CalculatedLinearMetricValuesValuesInner>**](CalculatedLinearMetricValuesValuesInner.md) | Calculated metric values in the same order as `metrics`. | | | **confidence_mins** | [**Array<CalculatedLinearMetricValuesConfidenceMinsInner>**](CalculatedLinearMetricValuesConfidenceMinsInner.md) | Confidence interval @ p=0.8, minimum. The same order as `metrics`. It is optional because there can be exact metrics like \"count open PRs per month\". | [optional] | | **confidence_maxs** | [**Array<CalculatedLinearMetricValuesConfidenceMinsInner>**](CalculatedLinearMetricValuesConfidenceMinsInner.md) | Confidence interval @ p=0.8, maximum. The same order as `metrics`. It is optional because there can be exact metrics like \"count open PRs per month\". | [optional] | | **confidence_scores** | **Array<Integer>** | Confidence score from 0 (random guess) to 100 (very confident). The same order as `metrics`. May be `null` for exact metrics. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::CalculatedLinearMetricValues.new( date: null, values: null, confidence_mins: null, confidence_maxs: null, confidence_scores: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.86 | docs/CalculatedLinearMetricValues.md |
athenian-2.1.85 | docs/CalculatedLinearMetricValues.md |
athenian-2.1.81 | docs/CalculatedLinearMetricValues.md |