Accord.Statistics.Testing.ReceiverOperatingCurveTest.ReceiverOperatingCurveTest C# (CSharp) Method

ReceiverOperatingCurveTest() public method

Creates a new ReceiverOperatingCurveTest.
public ReceiverOperatingCurveTest ( ReceiverOperatingCharacteristic curve, double hypothesizedValue = 0.5, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System
curve ReceiverOperatingCharacteristic The curve to be tested.
hypothesizedValue double The hypothesized value for the ROC area.
alternate OneSampleHypothesis The alternative hypothesis (research hypothesis) to test.
return System
        public ReceiverOperatingCurveTest(ReceiverOperatingCharacteristic curve, double hypothesizedValue = 0.5,
            OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis)
        {
            this.Curve = curve;

            Compute(curve.Area, hypothesizedValue, curve.StandardError, alternate);
        }