Method: Statsample::Token#to_s

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

#to_sObject



227
228
229
230
231
232
# File 'lib/statsample/formula/formula.rb', line 227

def to_s
  interact_terms
    .zip(full)
    .map { |t, f| f ? t : t + '(-)' }
    .join ':'
end