cascading.pattern.model.generalregression
Class Parameter

java.lang.Object
  extended by cascading.pattern.model.generalregression.Parameter
All Implemented Interfaces:
Serializable

public class Parameter
extends Object
implements Serializable

See Also:
Serialized Form

Constructor Summary
Parameter(String name, double beta)
           
Parameter(String name, double beta, int df)
           
Parameter(String name, double beta, List<Predictor> predictors)
           
Parameter(String name, double beta, Predictor... predictors)
           
 
Method Summary
 void addPredictor(Predictor predictor)
           
 void addPredictors(List<Predictor> predictors)
           
 ParameterExpression createExpression(Fields argumentsFields)
           
 double getBeta()
           
 ArrayList<CovariantPredictor> getCovariants()
           
 int getDegreesOfFreedom()
           
 ArrayList<FactorPredictor> getFactors()
           
 String getName()
           
 boolean isNoOp()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Parameter

public Parameter(String name,
                 double beta,
                 int df)

Parameter

public Parameter(String name,
                 double beta)

Parameter

public Parameter(String name,
                 double beta,
                 Predictor... predictors)

Parameter

public Parameter(String name,
                 double beta,
                 List<Predictor> predictors)
Method Detail

getName

public String getName()

getBeta

public double getBeta()

getDegreesOfFreedom

public int getDegreesOfFreedom()

getCovariants

public ArrayList<CovariantPredictor> getCovariants()

getFactors

public ArrayList<FactorPredictor> getFactors()

isNoOp

public boolean isNoOp()

addPredictors

public void addPredictors(List<Predictor> predictors)

addPredictor

public void addPredictor(Predictor predictor)

createExpression

public ParameterExpression createExpression(Fields argumentsFields)


Copyright © 2007-2015 Concurrent, Inc. All Rights Reserved.