Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Com.numericalmethod.suanshu.stats.regression Classes and Interfaces - 70 results found.
NameDescriptionTypePackageFramework
BackwardEliminationConstructs a GLM model for a set of observations using the backward elimination method.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
BackwardElimination .StepInterfacecom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
ConstrainedLASSObyLARSThis class solves the constrained form of LASSO by modified least angle regression (LARS) and linear interpolation:Classcom.numericalmethod.suanshu.stats.regression.linear.lassoSuanShu
ConstrainedLASSOProblemA LASSO (least absolute shrinkage and selection operator) problem focuses on solving an RSS (residual sum of squared errors) problem with L1 regularization.Classcom.numericalmethod.suanshu.stats.regression.linear.lassoSuanShu
EliminationByAICIn each step, a factor is dropped if the resulting model has the least AIC, until no factor removal can result in a model with AIC lower than the current AIC.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
EliminationByZValueIn each step, the factor with the least z-value is dropped, until all z-values are greater than the critical value (given by the significance level).Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
FixedEffectsModelFits the panel data to this linear model: y_{it} = alpha_{i}+X_{it}mathbf{eta}+u_{it}Classcom.numericalmethod.suanshu.stats.regression.linear.panelSuanShu
ForwardSelectionConstructs a GLM model for a set of observations using the forward selection method.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
ForwardSelection .StepInterfacecom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
GeneralizedLinearModelThe Generalized Linear Model (GLM) is a flexible generalization of the Ordinary Least Squares regression.Classcom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
GeneralizedLinearModelQuasiFamilyGLM for the quasi-families.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasiSuanShu
GLMBetaClasscom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
GLMBinomialThis is the Binomial distribution of the error distribution in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMExponentialDistributionThis interface represents a probability distribution from the exponential family.Interfacecom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMFamilyFamily provides a convenient way to specify the error distribution and link function used in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMFittingInterfacecom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
GLMGammaThis is the Gamma distribution of the error distribution in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMGaussianThis is the Gaussian distribution of the error distribution in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMInverseGaussianThis is the Inverse Gaussian distribution of the error distribution in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMModelSelectionGiven a set of observations {y, X}, we would like to construct a GLM to explain the data.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
GLMModelSelection .ModelNotFoundThrow a ModelNotFound exception when fail to construct a model toSee Also:Serialized FormClasscom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
GLMPoissonThis is the Poisson distribution of the error distribution in GLM model.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distributionSuanShu
GLMProblemThis is a Generalized Linear regression problem.Classcom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
GLMResidualsResidual analysis of the results of a Generalized Linear Model regression.Classcom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
IWLSClasscom.numericalmethod.suanshu.stats.regression.linear.glmSuanShu
LARSFittingThis class computes the entire LARS sequence of coefficients and fits, starting from zero to theSee Also:B.Classcom.numericalmethod.suanshu.stats.regression.linear.lasso.larsSuanShu
LARSFitting .EstimatorsGets the estimated sequence of A.Classcom.numericalmethod.suanshu.stats.regression.linear.lasso.larsSuanShu
LARSProblemLeast Angle Regression (LARS) is a regression algorithm for high-dimensional data.Classcom.numericalmethod.suanshu.stats.regression.linear.lasso.larsSuanShu
LinearModelA linear model provides fitting and the residual analysis (goodness of fit).Interfacecom.numericalmethod.suanshu.stats.regression.linearSuanShu
LinkCloglogThis class represents the complementary log-log link function: g(x) = log(-log(1 - x))Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkFunctionThis interface represents a link function g(x) in Generalized Linear Model (GLM).Interfacecom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkIdentityThis class represents the identity link function:See Also:GeneralizedLinearModelClasscom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkInverseThis class represents the inverse link function:See Also:GeneralizedLinearModelClasscom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkInverseSquaredThis class represents the inverse-squared link function:See Also:GeneralizedLinearModelClasscom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkLogThis class represents the log link function:See Also:GeneralizedLinearModelClasscom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkLogitThis class represents the logit link function: g(x) = log(frac{mu}{1-mu})Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkProbitThis class represents the Probit link function, which is the inverse of cumulative distribution function of the standard Normal distribution N(0, 1).Classcom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LinkSqrtThis class represents the square-root link function:See Also:GeneralizedLinearModelClasscom.numericalmethod.suanshu.stats.regression.linear.glm.distribution.linkSuanShu
LMBetaBeta coefficients are the outcomes of fitting a linear regression model.Classcom.numericalmethod.suanshu.stats.regression.linearSuanShu
LMDiagnosticsThis class collects some diagnostics measures for the goodness of fit based on the residulas for a linear regression model.Classcom.numericalmethod.suanshu.stats.regression.linear.residualanalysisSuanShu
LMInformationCriteriaThe information criteria measure the goodness of fit of an estimated statistical model.Classcom.numericalmethod.suanshu.stats.regression.linear.residualanalysisSuanShu
LMProblemThis is a linear regression or a linear model (LM) problem.Classcom.numericalmethod.suanshu.stats.regression.linearSuanShu
LMResidualsThis is the residual analysis of the results of a linear regression model.Classcom.numericalmethod.suanshu.stats.regression.linear.residualanalysisSuanShu
LogisticBetaClasscom.numericalmethod.suanshu.stats.regression.linear.logisticSuanShu
LogisticProblemA logistic regression problem is a variation of the OLS regression problem.Classcom.numericalmethod.suanshu.stats.regression.linear.logisticSuanShu
LogisticRegressionA 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.Classcom.numericalmethod.suanshu.stats.regression.linear.logisticSuanShu
LogisticResidualsResidual analysis of the results of a logistic regression.Classcom.numericalmethod.suanshu.stats.regression.linear.logisticSuanShu
OLSBetaClasscom.numericalmethod.suanshu.stats.regression.linear.olsSuanShu
OLSRegression(Weighted) Ordinary Least Squares (OLS) is a method for fitting a linear regression model.Classcom.numericalmethod.suanshu.stats.regression.linear.olsSuanShu
OLSResidualsThis is the residual analysis of the results of an ordinary linear regression model.Classcom.numericalmethod.suanshu.stats.regression.linear.olsSuanShu
PanelDataA panel data refers to multi-dimensional data frequently involving measurements over time.Classcom.numericalmethod.suanshu.stats.regression.linear.panelSuanShu
PanelData .TransformationTransforms the data, e.Interfacecom.numericalmethod.suanshu.stats.regression.linear.panelSuanShu
PanelRegressionPanel (data) analysis is a statistical method, widely used in social science, epidemiology, and econometrics, which deals with two-dimensional (cross sectional/times series) panel data.Interfacecom.numericalmethod.suanshu.stats.regression.linear.panelSuanShu
QuasiBinomialThis is the quasi Binomial distribution in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiDistributionThis interface represents the quasi-distribution used in GLM.Interfacecom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiFamilyThis interface represents the quasi-family used in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiGammaThis is the quasi Gamma distribution in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiGaussianThis is the quasi Gaussian distribution in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiGLMBetaClasscom.numericalmethod.suanshu.stats.regression.linear.glm.quasiSuanShu
QuasiGLMNewtonRaphsonClasscom.numericalmethod.suanshu.stats.regression.linear.glm.quasiSuanShu
QuasiGLMProblemThis class represents a quasi generalized linear regression problem.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasiSuanShu
QuasiGLMResidualsResidual analysis of the results of a quasi Generalized Linear Model regression.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasiSuanShu
QuasiInverseGaussianThis is the quasi Inverse-Gaussian distribution in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
QuasiPoissonThis is the quasi Poisson distribution in GLM.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.quasi.familySuanShu
SelectionByAICIn each step, a factor is added if the resulting model has the highest AIC, until no factor addition can result in a model with AIC higher than the current AIC.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
SelectionByZValueIn each step, the most significant factor is added, until all remaining factors are insignificant.Classcom.numericalmethod.suanshu.stats.regression.linear.glm.modelselectionSuanShu
UnconstrainedLASSObyCoordinateDescentThis class solves the unconstrained form of LASSO, that is, min_w left { left | Xw - y ight |_2^2 + lambda * left | wClasscom.numericalmethod.suanshu.stats.regression.linear.lassoSuanShu
UnconstrainedLASSObyQPThis class solves the unconstrained form of LASSO (i.Classcom.numericalmethod.suanshu.stats.regression.linear.lassoSuanShu
UnconstrainedLASSOProblemA LASSO (least absolute shrinkage and selection operator) problem focuses on solving an RSS (residual sum of squared errors) problem with L1 regularization.Classcom.numericalmethod.suanshu.stats.regression.linear.lassoSuanShu
WeightedRSSWeighted sum of squared residuals (RSS) for a given function (f(.Classcom.numericalmethod.suanshu.stats.regressionSuanShu