C# Класс Accord.Statistics.Models.Regression.LogisticRegression

Наследование: ICloneable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetConfidenceInterval ( int index ) : DoubleRange

Gets the 95% confidence interval for the Odds Ratio for a given coefficient.

GetOddsRatio ( int index ) : double

Gets the Odds Ratio for a given coefficient.

The odds ratio can be computed raising Euler's number (e ~~ 2.71) to the power of the associated coefficient.

LogisticRegression ( ) : System

Creates a new Logistic Regression Model.

Приватные методы

Метод Описание
FromWeights ( double weights ) : LogisticRegression
FromWeights ( double weights, double intercept ) : LogisticRegression
LogisticRegression ( int inputs ) : System
LogisticRegression ( int inputs, double intercept ) : System

Описание методов

GetConfidenceInterval() публичный Метод

Gets the 95% confidence interval for the Odds Ratio for a given coefficient.
public GetConfidenceInterval ( int index ) : DoubleRange
index int /// The coefficient's index. The first value /// (at zero index) is the intercept value. ///
Результат AForge.DoubleRange

GetOddsRatio() публичный Метод

Gets the Odds Ratio for a given coefficient.
The odds ratio can be computed raising Euler's number (e ~~ 2.71) to the power of the associated coefficient.
public GetOddsRatio ( int index ) : double
index int /// The coefficient's index. The first value /// (at zero index) is the intercept value. ///
Результат double

LogisticRegression() публичный Метод

Creates a new Logistic Regression Model.
public LogisticRegression ( ) : System
Результат System