Push Values into Running Regression Object

rro = rro:push(x,y, [x2,y2], …)
rro = rro:push(tbl, …)

Updates the rro object with the discrete (X,Y) pairs, or a table of (X,Y) pairs.

Parameter Type Description
x,y number, number pairs of values
tbl table table of values.
Returns Type Description
rro object The same regression object.
Note

The table tbl should be a flat indexed table, where

  • t[1] is the x
  • t[2] is the y
  • t[3] is the next x
  • t[4] is the next y
  • etc.