class MoreMath::Sequence

def linear_regression

represents the line computed by the linear regression algorithm.
Returns the LinearRegression object for the equation a * x + b which
def linear_regression
  LinearRegression.new @elements
end