TREND (values of a linear regression)

<< Click to Display Table of Contents >>

TREND (values of a linear regression)

Syntax:

TREND(y_values [, x_values] [, New_x_values] [, Constant])

Description:

This returns the values of a linear regression.

Linear regression is a statistical technique that adapts a line (called "trendline" or "best-fit line") to a set of data points (for example, the results of a series of measurements).

The TREND function returns an array with the y values of a trendline calculated from the given y values and x values.

To clarify, the function expects the following arguments:

y_values: Here, you specify the existing y coordinates, that is, the dependent values. y_values can be either a cell reference or an array.

x_values: Here, you have the option of specifying the x coordinates, that is, the independent values. x_values can also be either a cell reference or an array. If x_values are omitted, the function automatically uses the values 1, 2, 3, ... (according to the number of existing y_values).

New_x_values (optional) are the x values for which you want to determine the corresponding y values on the curve. If omitted, the values in x_values will be used. If required, however, you can specify other x coordinates with New_x_values. New_x_values can also be either a cell reference or an array.

Constant (optional) is a logical value that lets you specify if the constant b (the y-intercept point) should be set to zero:

TRUE or omitted: b is automatically calculated from the available data.

FALSE: b is set to zero. This forces the trendline to run through the zero point. The m coefficient(s) are adjusted accordingly.

Note:

Formulas using this function have to be entered as an array formula. For more information, see Working with arrays.

Additional info:

The linear regression is performed with this function using the least squares method.

Example:

The resistance of a temperature-dependent resistor has been measured at several temperatures.

Cells A1:A4 contain the temperatures that were measured (the independent variables): 8, 20, 25, 28

Cells B1:B4 contain the resistances that were measured (the dependent variables): 261, 508, 608, 680

The following calculation returns an array with the y coordinates of a best-fit line calculated from these values:

TREND(B1:B4, A1:A4)

See also:

LINEST, LOGEST, GROWTH, FORECAST