Difference between revisions of "Manuals/calci/INTERCEPT"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''INTERCEPT'''('''Y''','''X''') '''Where Y '''is the dependent set of observations or data, and '''Y''' is th...")
 
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div id="6SpaceContent" class="zcontent" align="left">
+
<div style="font-size:30px">'''INTERCEPT (KnownYArray,KnownXArray)'''</div><br/>
 +
*<math>KnownYArray</math> is the set of dependent data
 +
*<math>KnownXArray</math> is the set of independent data.
 +
**INTERCEPT(),returns the intercept of the linear regression line.
  
'''INTERCEPT'''('''Y''','''X''')
+
==Description==
 +
*This function is calculating the point where the line is intersecting y-axis using dependent and independent variables.
 +
*Using this function we can find the value of <math> y </math> when <math> x </math> is zero.
 +
*The intercept  point is finding using  simple linear regression.
 +
*It is fits a straight line through the set of <math> n </math> points in such a way that makes vertical distances between the points of the data set and the fitted line as small as possible.
 +
*Regression methods nearly to the simple ordinary least squares also exist.
 +
*i.e.,The Least Squares method relies on taking partial derivatives with respect to the slope and intercept which provides a solvable pair of equations called normal equations.
 +
*Suppose there are <math> n </math> data points  <math> {y_{i}, x_{i}}</math>, where <math>i = 1, 2,...n</math>
 +
*To find the equation of the regression line:<math> a=\bar{y}-b.\bar{x}</math>.
 +
*This equation will give a "best" fit for the data points.
 +
*The "best" means least-squares method. Here b is the slope.
 +
*The slope is calculated by:<math> b=\frac{\sum_{i=1}^{n} {(x_{i}-\bar{x})(y_{i}-\bar{y})}} {\sum_{i=1}^{n}{(x_{i}-\bar{x})}^2}</math>.
 +
*In this formula<math> \bar{x}</math> and<math> \bar{y}</math> are the sample means  AVERAGE of <math> x</math>  and <math> y </math>.
 +
*In <math>INTERCEPT (KnownYArray,KnownXArray)</math>, the arguments can be numbers, names, arrays, or references that contain numbers.
 +
* The arrays  values are  disregarded when it is contains text, logical values or empty cells.
 +
*This function will return the result as error when any one of the argument is non-numeric or <math>x</math> and <math>y</math> is having different number of data points and there is no data.
  
'''Where Y '''is the dependent set of observations or data, and
+
==ZOS==
 +
*The syntax is to calculate intercept of the regression line in ZOS is <math>INTERCEPT (KnownYArray,KnownXArray)</math>.
 +
**<math>KnownYArray</math> is the set of dependent data
 +
**<math>KnownXArray</math> is the set of independent data.
 +
*For e.g.,intercept([14,16,19,15.25],[20.1,26,10,26.4])
 +
{{#ev:youtube|ltc2nl-pwpk|280|center|Intercept}}
  
'''Y''' is the independent set of observations or data.
+
==Examples==
 +
{| class="wikitable"
 +
|+Spreadsheet
 +
|-
 +
! !! A !! B !! C !! D!! E
 +
|-
 +
! 1
 +
| 4 || 5 || 2 ||10 ||
 +
|-
 +
! 2
 +
| 12 || 20 || 15 || 11 ||
 +
|-
 +
! 3
 +
| 25  || -12  || -9  ||30 ||18
 +
|-
 +
! 4
 +
| 10 ||15  || -40  ||52 ||36
 +
|}
  
</div>
+
#=INTERCEPT(A1:D1,A2:D2)= 10.13265306
----
+
#=INTERCEPT(A3:E3,A4:E4)= 4.754939085
<div id="1SpaceContent" class="zcontent" align="left">
 
  
This function calculates  the point at which a line will intersect the y-axis using the  available x-values and y-values.
+
==Related Videos==
  
</div>
+
{{#ev:youtube|LNSB0N6esPU|280|center|INTERCEPTS}}
----
 
<div id="7SpaceContent" class="zcontent" align="left">
 
  
·         An array contains text, logical values, or empty cells that are ignored; but, the cells with the value zero are included.
+
==See Also==
 +
*[[Manuals/calci/PEARSON  | PEARSON ]]
 +
*[[Manuals/calci/AVERAGE  | AVERAGE ]]
  
·          INTERCEPT shows the error value, when Y and X have a dissimilar number of data points.
+
==References==
 +
*[http://www.purplemath.com/modules/intrcept.htm INTERCEPT]
  
Formulas:-
 
  
·          The equation to calculate the intercept of the regression line, a, is:
 
  
where b is the slope, and is calculated as:
+
*[[Z_API_Functions | List of Main Z Functions]]
 
 
and where x and y are the sample means AVERAGE(Y) and AVERAGE(X).
 
 
 
</div>
 
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
 
 
INTERCEPT
 
 
 
</div></div>
 
----
 
<div id="8SpaceContent" class="zcontent" align="left">
 
 
 
Lets see an example,
 
 
 
INTERCEPT(Y, X)
 
 
 
'''B                        C'''
 
 
 
10                     13
 
 
 
8                        11
 
 
 
15                      18
 
 
 
6                        12
 
 
 
12                      10
 
 
 
<nowiki>=INTERCEPT(B2:B6,C2:C6) is 1.2268</nowiki>
 
 
 
</div>
 
----
 
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Remarks </div></div>
 
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
 
 
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
| class="    " |
 
| Column1
 
| class="  " | Column2
 
| class="  " | Column3
 
| class="  " | Column4
 
|- class="odd"
 
| class=" " | Row1
 
| class="sshl_f" | 10
 
| class="sshl_f" | 13
 
| class="sshl_f" | 1.226804
 
| class="sshl_f" |
 
|- class="even"
 
| class="  " | Row2
 
| class="sshl_f" | 8
 
| class="sshl_f" | 11
 
| class="SelectTD" |
 
| class="sshl_f" |
 
|- class="odd"
 
| Row3
 
| class="sshl_f" | 15
 
| class="sshl_f" | 18
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="even"
 
| Row4
 
| class="sshl_f" | 6
 
| class="sshl_f" | 12
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="odd"
 
| class=" " | Row5
 
| class="sshl_f" | 12
 
| class="sshl_f" | 10
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="even"
 
| Row6
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|}
 
  
<div align="left">[[Image:calci1.gif]]</div></div>
+
*[[ Z3 |  Z3 home ]]
----
 

Latest revision as of 17:04, 1 August 2018

INTERCEPT (KnownYArray,KnownXArray)


  • is the set of dependent data
  • is the set of independent data.
    • INTERCEPT(),returns the intercept of the linear regression line.

Description

  • This function is calculating the point where the line is intersecting y-axis using dependent and independent variables.
  • Using this function we can find the value of when is zero.
  • The intercept point is finding using simple linear regression.
  • It is fits a straight line through the set of points in such a way that makes vertical distances between the points of the data set and the fitted line as small as possible.
  • Regression methods nearly to the simple ordinary least squares also exist.
  • i.e.,The Least Squares method relies on taking partial derivatives with respect to the slope and intercept which provides a solvable pair of equations called normal equations.
  • Suppose there are data points , where
  • To find the equation of the regression line:.
  • This equation will give a "best" fit for the data points.
  • The "best" means least-squares method. Here b is the slope.
  • The slope is calculated by:.
  • In this formula and are the sample means AVERAGE of and .
  • In , the arguments can be numbers, names, arrays, or references that contain numbers.
  • The arrays values are disregarded when it is contains text, logical values or empty cells.
  • This function will return the result as error when any one of the argument is non-numeric or and is having different number of data points and there is no data.

ZOS

  • The syntax is to calculate intercept of the regression line in ZOS is .
    • is the set of dependent data
    • is the set of independent data.
  • For e.g.,intercept([14,16,19,15.25],[20.1,26,10,26.4])
Intercept

Examples

Spreadsheet
A B C D E
1 4 5 2 10
2 12 20 15 11
3 25 -12 -9 30 18
4 10 15 -40 52 36
  1. =INTERCEPT(A1:D1,A2:D2)= 10.13265306
  2. =INTERCEPT(A3:E3,A4:E4)= 4.754939085

Related Videos

INTERCEPTS

See Also

References