Method: Statsample::FormulaWrapper#initialize
- Defined in:
- lib/statsample/formula/formula.rb
permalink #initialize(formula, df) ⇒ FormulaWrapper
Note:
Specify 0 as a term in the formula if you do not want constant to be included in the parsed formula
Initializes formula wrapper object to parse a given formula into some tokens which do not overlap one another.
21 22 23 24 25 26 27 28 29 |
# File 'lib/statsample/formula/formula.rb', line 21 def initialize(formula, df) @df = df # @y store the LHS term that is name of vector to be predicted # @tokens store the RHS terms of the formula @y, *@tokens = split_to_tokens(formula) @tokens = @tokens.uniq.sort manage_constant_term @canonical_tokens = non_redundant_tokens end |