Method: Statsample::Token#size

Defined in:
lib/statsample/formula/formula.rb

#sizeObject

[View source] [View on GitHub]

173
174
175
176
177
178
# File 'lib/statsample/formula/formula.rb', line 173

def size
  # TODO: Return size 1 for value '1' also
  # CAn't do this at the moment because have to make
  # changes in sorting first
  value == '1' ? 0 : interact_terms.size
end