GROWTH too aggressive, TREND too conservative - what to do?

G

Guest

I am working on projecting some data that is non-linear. the TREND function
gives me a line that is too conservative in its estimates, but GROWTH gives
me an exponential line that is way too aggressive.

Is there another function I can use?
Can I combine these functions meaningfully?
Is there a way to tweak GROWTH to be less aggressive?
Any other ideas?
 
H

Harlan Grove

Brett L. said:
I am working on projecting some data that is non-linear. the TREND
function gives me a line that is too conservative in its estimates,
but GROWTH gives me an exponential line that is way too aggressive.

Idle curiosity: which gives the higher R-squared value?
Is there another function I can use?

Assuming you have one y series and one x series, there are other
functional forms you could try. General ones,

Polynomials: y = a + b x + c x^2 + d x^3 + . . .

=LINEST(y,x^{1,2,3,...})

Hoerl curves: y = a x^b exp(c x)

=LINEST(LN(y),LN(x)*{1,0}+x*{0,1})

There's also logistic regression.

=LINEST(LN(y/(1-y)),x)
Can I combine these functions meaningfully?

You could always average the two, but that'd be pure ad hoc without a
shred of theoretical support. Even so, it may serve your needs
adequately.
Is there a way to tweak GROWTH to be less aggressive?

Not without transformingadjusting either x or y series.
 
G

Guest

:
....
Assuming you have one y series and one x series, there are other
functional forms you could try. General ones,

Polynomials: y = a + b x + c x^2 + d x^3 + . . .

=LINEST(y,x^{1,2,3,...})
....
which can be projected by TREND as

=TREND(y,known_x^{1,2,3,...},new_x^{1,2,3,...})

Jerry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top