SuanShu, a Java numerical and statistical library

com.numericalmethod.suanshu.stats.regression.linear.logistic
Class Logistic

java.lang.Object
  extended by com.numericalmethod.suanshu.stats.regression.linear.logistic.Logistic

public class Logistic
extends java.lang.Object

A logistic regression (sometimes called the logistic model or logit model) is used for prediction of the probability of occurrence of an event by fitting data to a logit function logistic curve. It is a generalized linear model used for binomial regression.

This particular implementation works with binary data (y).

See Also:

Field Summary
 double AIC
          the AIC
 Beta beta
          the β^ statistics
 double ML
          the maximum log-likelihood
 LogisticProblem problem
          the logistic regression problem to be solved
 Residuals residuals
          the residual analysis of this regression
 
Constructor Summary
Logistic(LmProblem problem)
          Construct a Logistic instance.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

problem

public final LogisticProblem problem
the logistic regression problem to be solved


beta

public final Beta beta
the β^ statistics


residuals

public final Residuals residuals
the residual analysis of this regression


ML

public final double ML
the maximum log-likelihood


AIC

public final double AIC
the AIC

Constructor Detail

Logistic

public Logistic(LmProblem problem)
Construct a Logistic instance.

Parameters:
problem - the logistic regression problem to be solved

SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.