STEYX function - The function returns the standard error of the predicted value of y for each value of x in regression in Excel
The following article introduces you to the STEYX function - one of the functions in the statistical function group is very popular in Excel.
Description: The function returns the standard error of the predicted value of y for each value of x in the regression.
Syntax: STEYX (known_y's, known_x's)
Inside:
- known_y's: Array or range of dependent data points, is a required parameter.
- known_x's: An independent data point or range, which is a required parameter.
Attention:
- Arguments can be numbers, names or arrays that contain numbers.
- When typing logical values and presenting text numbers into function arguments -> these values are still counted, but cells with 0 value will still be counted.
- Function error occurs when arguments are text or error values cannot be converted.
- If known_y's and known_x's have a different number of data points -> the function returns the # N / A error value .
- If known_y's and known_x's are empty or have fewer than three data points -> the function returns the # DIV / 0 error value .
- The equation for standard errors is:
[sqrt {frac {1} {{left ({n - 2} right)}} left [{sum {{{left ({y - overline y} right)} ^ 2} - {{frac {{left [{ sum {left ({x - overline x} right) left ({y - overline y} right)}} right]}} {{sum {{{left ({x - overline x} right)} ^ 2}}} }} ^ 2}}} right]}]
Inside:
+ x is the sample mean AVERAGE (number1, number2, .)
+ n is the sample size.
For example:
Calculate the standard error of the predicted value of y for each value of x in the regression of the values in the following data table:
- In the cell to calculate enter the formula : = STEYX (C6: C12, D6: D12)
- Press Enter -> the standard error of the predicted y value for each value of x in the regression is:
- If the number of data points of know_y's and know_x's are different -> the function returns the # N / A error value .
- If the number of data points of know_y's and know_x's is smaller than 3 data points -> the function returns the # DIV / 0 error value .
Above are instructions and some specific examples when using the STEYX function in Excel.
Good luck!
You should read it
- SLOPE function - The function returns the slope of a linear regression line through data points in Excel
- FORECAST function - The function returns a value along a linear trend in Excel
- STDEV.P function - The function returns the standard deviation based on the whole in Excel
- STDEV.S function - The function returns the standard deviation based on a sample in Excel
- NORM.INV function - The function returns the inverse of the standard cumulative distribution in Excel
- NORM.S.DIST function - The function returns the normalized distribution with a mean of 0 and a standard deviation of 1 in Excel
- PHI function - The function returns the value of the density function for a normal distribution in Excel
- NORM.DIST function - The function returns the normal distribution with the standard deviation and the mean value specified in Excel
- How to use ADDRESS function in Excel
- LOGNORM.INV function - The function returns the inverse of the logarithmic distribution of x in Excel
- How to use the IF function in Excel
- How to use the IFS function in Excel 2016
Maybe you are interested
AMD has surpassed Intel in brand value
SQL way to count NULL and NOT NULL values in a column
Comparing Odroid-N2+ and Raspberry Pi 4: Which option offers better value?
How to receive free gifts from IObit with a total value of nearly 150,000 USD
Write a program to find duplicate values in Python
Write a program to check duplicate values in Python