CapabilityConfidenceIntervals Class

Contains confidence intervals for selected capability and performance metrics computed by a capability analysis.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public sealed class CapabilityConfidenceIntervals
Inheritance
Object  →  CapabilityConfidenceIntervals

Remarks

An instance is present on ConfidenceIntervals only when a confidence level was supplied to the analysis entry point. When no confidence level was requested the property is null.

Individual interval properties mirror the nullable capability metrics on CapabilityAnalysisResult: an interval is null when the corresponding metric is undefined (for example Cp is null when no bilateral specification was supplied) or when an interval estimation method is not available for that metric.

The confidence level is expressed as a probability in (0, 1).

Each interval is represented as an Interval<T> of double, where LowerBound is the lower confidence bound and UpperBound is the upper confidence bound.

Properties

ConfidenceLevel Gets the confidence level as a probability in (0, 1). For example, 0.95 represents a 95% confidence interval.
Cp Gets the confidence interval for Cp, or null when Cp is undefined or not supported for interval estimation.
Cpk Gets the confidence interval for Cpk, or null when Cpk is undefined or not supported for interval estimation.
Cpl Gets the confidence interval for Cpl, or null when Cpl is undefined or not supported for interval estimation.
Cpu Gets the confidence interval for Cpu, or null when Cpu is undefined or not supported for interval estimation.
Pp Gets the confidence interval for Pp, or null when Pp is undefined or not supported for interval estimation.
Ppk Gets the confidence interval for Ppk, or null when Ppk is undefined or not supported for interval estimation.
Ppl Gets the confidence interval for Ppl, or null when Ppl is undefined or not supported for interval estimation.
Ppu Gets the confidence interval for Ppu, or null when Ppu is undefined or not supported for interval estimation.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FromJson Reconstructs a CapabilityConfidenceIntervals from a JSON string.
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToJson Serializes this capability confidence intervals object to a JSON string.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also