Difference between revisions of "Manuals/calci/LINEST"
Jump to navigation
Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''LINEST'''('''Y''',X,C,stats)'''Where Y '''is the set of y-values and X is an optional set of x-values that in th...") |
|||
Line 1: | Line 1: | ||
− | + | =LINEST(Y, X, C , stats)= | |
− | + | where, | |
+ | *<math>Y</math> is a set of Y values, | ||
+ | *<math>X</math> is an optional set of X values, | ||
+ | *<math>C</math> is a logical value TRUE or FALSE, that decides whether to force the constant 'b' to 0, | ||
+ | *<math>stats</math> is a logical value TRUE or FALSE, that decides whether to return additional regression statistics. | ||
− | + | LINEST() is an array function that calculates the statistics for a line by using the 'least squares' method to calculate a straight line that closely fits the input data. | |
− | + | == Description == | |
− | |||
− | |||
− | + | *If 'Y' is the point on y-axis, 'X' is the point on x-axis, 'm' is a constant indicating slope of the line and 'b' is the constant value at which the line crosses y-axis (Y intercept), | |
+ | then equation of line is - | ||
− | < | + | <math>Y=mX + b</math> |
− | |||
− | |||
− | + | *For multiple ranges of X-values, | |
− | Y | + | <math>Y = m1X1 + m2X2 +......+ b</math> |
− | + | *<math>C</math> is a logical value that decides whether to make constant 'b' equal to 0. | |
+ | *If <math>C</math> = TRUE or omitted, 'b' is calculated normally. If <math>C</math> = FALSE, 'b' is made equal to 0. | ||
+ | *<math>stats</math> is a logical value that decides whether to display additional regression statistics. | ||
+ | *If <math>stats</math> = TRUE, calci returns additional regresstion statistics. If <math>stats</math> = FALSE or omitted, Calci returns the values of 'm'(slope) and the constant 'b'. | ||
+ | *When there is only one independent X variable, Slope(m) and Y intercept (b) can be calculated using following formulas - | ||
− | + | <math>Slope (m) = INDEX(LINEST(Y, X),1) </math> | |
− | < | + | <math>Y intercept (b) = INDEX(LINEST(Y, X),2) </math> |
− | |||
− | |||
− | + | == Examples == | |
− | + | <div id="2SpaceContent" class="zcontent" align="left"> | |
− | |||
− | <div id=" | ||
− | + | {| id="TABLE3" class="SpreadSheet blue" | |
+ | |- class="even" | ||
+ | | class="sshl_f" | '''Y co-ordinates''' | ||
+ | | class="sshl_f" | '''X co-ordinates''' | ||
+ | | class="sshl_f" | | ||
− | + | |- class="odd" | |
+ | | class="sshl_f" | 1 | ||
+ | | class="sshl_f" | 2 | ||
+ | | class="sshl_f" | | ||
− | + | |- class="even" | |
+ | | class="sshl_f" | 5 | ||
+ | | class="sshl_f" | 4 | ||
+ | | class="sshl_f" | | ||
− | + | |- class="odd" | |
+ | | class="sshl_f" | 4 | ||
+ | | class="sshl_f" | 6 | ||
+ | | class="sshl_f" | | ||
− | + | |- class="even" | |
+ | | class="sshl_f" | 3 | ||
+ | | class="sshl_f" | 8 | ||
+ | | class="sshl_f" | | ||
− | + | |- class="odd" | |
+ | | class="sshl_f" | 2 | ||
+ | | class="sshl_f" | 10 | ||
+ | | class="sshl_f" | | ||
+ | | class="sshl_f" | | ||
+ | |} | ||
− | + | =LINEST(A2:A6,B2:B6,TRUE,FALSE) : Calculates the statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6.<br />Returns '''m=0''' and '''b=3''' as a result. | |
+ | =LINEST(A2:A6,B2:B6,FALSE,FALSE) : Calculates the statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6.<br />Returns '''m=0.4090909090909091''' and '''b=0''' as a result. | ||
+ | =LINEST(A2:A6,B2:B6,FALSE,TRUE) : Displays the additional regression statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6. | ||
− | < | + | <div id="5SpaceContent" class="zcontent" align="left"> |
− | + | {| class="SpreadSheet blue" | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | {| | ||
|- class="even" | |- class="even" | ||
− | | | + | | 0.40909090909090906 |
− | + | | 0 | |
− | |||
− | | | ||
− | |||
|- class="odd" | |- class="odd" | ||
− | + | | 0.14373989364401724 | |
− | + | | | |
− | |||
− | |||
− | |||
|- class="even" | |- class="even" | ||
− | | | + | | 0.6694214876033057 |
− | + | | 2.1320071635561044 | |
− | | | ||
− | |||
− | |||
|- class="odd" | |- class="odd" | ||
− | | | + | | 8.099999999999998 |
− | | | + | | 4 |
− | |||
− | |||
− | |||
|- class="even" | |- class="even" | ||
− | | | + | | 36.81818181818181 |
− | | | + | | 18.181818181818183 |
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
|} | |} | ||
+ | |||
+ | == See Also == | ||
+ | |||
+ | *[[Manuals/calci/LOGEST| LOGEST]] | ||
− | + | == References == | |
− | + | *[http://en.wikipedia.org/wiki/Linear_equation Linear Equation] |
Revision as of 16:45, 28 January 2014
LINEST(Y, X, C , stats)
where,
- is a set of Y values,
- is an optional set of X values,
- is a logical value TRUE or FALSE, that decides whether to force the constant 'b' to 0,
- is a logical value TRUE or FALSE, that decides whether to return additional regression statistics.
LINEST() is an array function that calculates the statistics for a line by using the 'least squares' method to calculate a straight line that closely fits the input data.
Description
- If 'Y' is the point on y-axis, 'X' is the point on x-axis, 'm' is a constant indicating slope of the line and 'b' is the constant value at which the line crosses y-axis (Y intercept),
then equation of line is -
- For multiple ranges of X-values,
- is a logical value that decides whether to make constant 'b' equal to 0.
- If = TRUE or omitted, 'b' is calculated normally. If = FALSE, 'b' is made equal to 0.
- is a logical value that decides whether to display additional regression statistics.
- If = TRUE, calci returns additional regresstion statistics. If = FALSE or omitted, Calci returns the values of 'm'(slope) and the constant 'b'.
- When there is only one independent X variable, Slope(m) and Y intercept (b) can be calculated using following formulas -
Examples
Y co-ordinates | X co-ordinates | ||
1 | 2 | ||
5 | 4 | ||
4 | 6 | ||
3 | 8 | ||
2 | 10 |
=LINEST(A2:A6,B2:B6,TRUE,FALSE) : Calculates the statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6.
Returns m=0 and b=3 as a result. =LINEST(A2:A6,B2:B6,FALSE,FALSE) : Calculates the statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6.
Returns m=0.4090909090909091 and b=0 as a result. =LINEST(A2:A6,B2:B6,FALSE,TRUE) : Displays the additional regression statistics of line with Y co-ordinates in cell range A2 to A6 and X co-ordinates in the cell range B2 to B6.
0.40909090909090906 | 0 |
0.14373989364401724 | |
0.6694214876033057 | 2.1320071635561044 |
8.099999999999998 | 4 |
36.81818181818181 | 18.181818181818183 |