steyx: Implementation of the STEYX function from Excel.

View source: R/fnc_steyx.R

steyxR Documentation

Implementation of the STEYX function from Excel.

Description

Translation of STEYX function from Excel to R. It is implemented according to the formula described in http://office.microsoft.com/en-au/excel-help/steyx-function-HP010062545.aspx. At least 3 finite pairs of data points are required for the calculation.

Usage

steyx(x, y)

Arguments

x

x values as numeric vector.

y

y values as numeric vector of similar length as x.

Value

The standard error of the predicted y-value for each x in the regression.

Examples

steyx(x = 1:3, y = 2:4)
steyx(x = 1:3, y = c(2, 3.1, 3.9))

eCerto documentation built on April 12, 2025, 9:13 a.m.

Related to steyx in eCerto...