Gradient of a line

240x55e.png


% increase is just the difference between months divided by the value of the first.

I know. I'm trying to calculate the long term trend.

All this talk of sandwiches is making me hungry... Lunch.
 
That's ok if you've got a constant increase from month to month, but I've got ups & downs. It's the long term trend that I want to get growth for.

Here's my data & the chart

14278526420_2e7e577a70_z.jpg

What is the trend supposed to be showing here?
You haven't even got the months in date order so surely trying to get a trend line is meaningless?
 
What is the trend supposed to be showing here?
You haven't even got the months in date order so surely trying to get a trend line is meaningless?

The months are in order? :confused:

Shouldnt the gradient be the inverse of 119.45 and 396.05? These are multipliers of X but gradient is measured against the Y axis.

So 0.0084 and 0.0025
8% and 2.5% ?
 
What is the trend supposed to be showing here?
You haven't even got the months in date order so surely trying to get a trend line is meaningless?

The trend in increased activity.

The months are by fiscal year not calendar year, so they are correct.

Ffs. For y=mx+c if c!=0 the gradient percentage is (m/c)*100, so y=119.45x+51062 gives (119.45/51062)*100 = 0.234%

So the trend is an increase of 0.234% per period, ie over 10 months you'd expect to have growth of 2.34%? That makes more sense.
 
So the trend is an increase of 0.234% per period, ie over 10 months you'd expect to have growth of 2.34%? That makes more sense.

Not quite.

0.234 if the increase for one period. After one period, the calculation has changed (the m and c values in Tuppy's equation). If you look at the right hand column in my earlier chart, you'll see this effect in action.
 
Yeh it looks right but if I do a basic graph of this data:

Code:
1	100
2	110
3	120
4	130
5	140

Clearly the % increase is 40% and the equation is y=10x+90. Following Tummy's method:

(10/90)*100*number of periods (4) = 44.4% i.e. not right :confused:
 
Yeh it looks right but if I do a basic graph of this data:

Code:
1	100
2	110
3	120
4	130
5	140

Clearly the % increase is 40% and the equation is y=10x+90. Following Tummy's method:

(10/90)*100*number of periods (4) = 44.4% i.e. not right :confused:

100 is really the starting point, rather than 90

10/90)*100*number of periods (4) = 40%
 
Ignoring the actual answer for a second, I'm not sure if you are analysing the data in a meaningful manner. Correct me if I'm wrong but aren't you just drawing a straight line between the first and last data point and saying that that is giving you the 'trend over time'. Who says there is a trend over time at all, perhaps what you are extrapolating is simply the scatter in the data?
 
Ignoring the actual answer for a second, I'm not sure if you are analysing the data in a meaningful manner. Correct me if I'm wrong but aren't you just drawing a straight line between the first and last data point and saying that that is giving you the 'trend over time'. Who says there is a trend over time at all, perhaps what you are extrapolating is simply the scatter in the data?

Time to break out the good old Sum of squares?
 
Ignoring the actual answer for a second, I'm not sure if you are analysing the data in a meaningful manner. Correct me if I'm wrong but aren't you just drawing a straight line between the first and last data point and saying that that is giving you the 'trend over time'. Who says there is a trend over time at all, perhaps what you are extrapolating is simply the scatter in the data?

No. It's a calculated trend line and you can see that it's not on the first & last data points but slightly below.
 
The gradient percentage can't be used in that way. Say you go ten months from Apr-14 57181 you increase by 10*119.45=1194.5, which as a percentage is
(1194.5/57181)*100=2.09%
 
Back
Top Bottom