poly.formula: Makes a polynomial model

Description Usage Arguments Details Value Author(s) References Examples

Description

Formulas are expanded to accommodate special functions for continuous and mixture variables.

Usage

1
	poly.formula(frml)

Arguments

frml

A formula using ~ in the usual way.

Details

This function expands formulas to accommodate polynomial models for which R has minimal support. Assuming for illustration that there are three variables, A, B, and C, the following expressions may be used.

All agruments to quad(), cubic(), and cubicS() must be numeric.

The cubicS() function produces a non-singular representation of a cubic model, when the variables are mixture variables, that is when the rows of data sum to a constant value, usually 1.0. Because of the mixture constraint, models containing mixture variables should not have a constant term. The linear and quadratic models for mixture variables A, B, and C are given by -1+(A+B+C) and -1+(A+B+C)^2 respectively. See Gorman and Hinman [1962] for details.

Value

An expanded formula is returned.

Author(s)

Bob Wheeler bwheelerg@gmail.com

Please cite this program as follows:

Wheeler, R.E. (2010). poly.formula lmPerm. The R project for statistical computing http://www.r-project.org/

References

Gorman, J.W. and Hinman, J.E. (1962). Simplex lattice designs for multicomponent systems. Technometrics. 4-4. 463-487.

Examples

1
	poly.formula(y~quad(A,B,C)+Error(block))

mtorchiano/lmPerm documentation built on March 2, 2020, 7 p.m.