I am using this tool to find the logarithmic regression for a data set. The formula it produces for my data set is:
$$ y = \beta_0 + \beta_1\ln x $$ where $$ \beta_0 = 4920.91845908055748609950\\ \beta_1 = 18358.72795143316913560309 $$
I am having trouble understanding how to implement this though... do I run the $\ln$ function on x, and then multiply the result with $\beta_1$, and add to $\beta_0$?
i.e. the way I am implementing this in a spreadsheet isβ¦
=$\beta_1$*LN(x)+$\beta_0$
This is not yielding the expected results