public static class GeneralizedLinearRegression.Binomial$
extends Object
| Modifier and Type | Field and Description | 
|---|---|
| static GeneralizedLinearRegression.Binomial$ | MODULE$Static reference to the singleton instance of this Scala object. | 
| Constructor and Description | 
|---|
| Binomial$() | 
| Modifier and Type | Method and Description | 
|---|---|
| double | aic(RDD<scala.Tuple3<Object,Object,Object>> predictions,
   double deviance,
   double numInstances,
   double weightSum)Akaike Information Criterion (AIC) value of the family for a given dataset. | 
| org.apache.spark.ml.regression.GeneralizedLinearRegression.Link | defaultLink()The default link instance of this family. | 
| double | deviance(double y,
        double mu,
        double weight)Deviance of (y, mu) pair. | 
| double | initialize(double y,
          double weight)Initialize the starting value for mu. | 
| String | name() | 
| double | project(double mu)Trim the fitted value so that it will be in valid range. | 
| double | variance(double mu)The variance of the endogenous variable's mean, given the value mu. | 
public static final GeneralizedLinearRegression.Binomial$ MODULE$
public org.apache.spark.ml.regression.GeneralizedLinearRegression.Link defaultLink()
public double initialize(double y,
                         double weight)
public double variance(double mu)
public double deviance(double y,
                       double mu,
                       double weight)
public double aic(RDD<scala.Tuple3<Object,Object,Object>> predictions, double deviance, double numInstances, double weightSum)
predictions - an RDD of (y, mu, weight) of instances in evaluation datasetdeviance - the deviance for the fitted model in evaluation datasetnumInstances - number of instances in evaluation datasetweightSum - weights sum of instances in evaluation datasetpublic double project(double mu)
public String name()