Patrick B. answered 07/27/19
Math and computer tutor/teacher
First you take the log of the column that has large values.
The you do linear regression on those two variables.
As an example,
Suppose it is x = [-10.10] and y is in millions
In that case, you take log(y) and do the
linear regression of x vs. log(y)
Your linear equation is then log(y) = Mx + B
Then it follows that y = exp(Mx+B)
is the exponential model