module Statsample::Anova

Public Instance Methods

oneway(*args) click to toggle source
# File lib/statsample/anova.rb, line 4
def oneway(*args)
  OneWay.new(*args)
end
oneway_with_vectors(*args) click to toggle source
# File lib/statsample/anova.rb, line 11
def oneway_with_vectors(*args)
  OneWayWithVectors.new(*args)
end
twoway(*args) click to toggle source
# File lib/statsample/anova.rb, line 7
def twoway(*args)
  TwoWay.new(*args)
end
twoway_with_vectors(*args) click to toggle source
# File lib/statsample/anova.rb, line 14
def twoway_with_vectors(*args)
  TwoWayWithVectors.new(*args)
end