Package org.renjin.stats.internals.models

Examples of org.renjin.stats.internals.models.Formula


    SEXP expr = tree.getElementAsSEXP(0);
    return expr;
  }
 
  private Formula formula(String response, List<Term> terms) {
    return new Formula(Symbol.get(response), 1, terms);
  }
View Full Code Here


  private Formula formula(String response, List<Term> terms) {
    return new Formula(Symbol.get(response), 1, terms);
  }
 
  private Formula formula(String response, int intercept, List<Term> terms) {
    return new Formula(Symbol.get(response), intercept, terms);
  }
View Full Code Here

TOP

Related Classes of org.renjin.stats.internals.models.Formula

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.