NAG CL Interface
G22 (Blgm)
Linear Model Specification

Note: please be advised that this chapter contains functions classed as ‘experimental’. Please see Section 4 in How to Use the NAG Library for further information
Settings help

CL Name Style:


1 Scope of the Chapter

The functions in this chapter provide a mechanism for specifying a linear model using a text based modelling language and are intended to be used in conjunction with the model fitting functions from other chapters, for example Chapter G02.

2 Background to the Problems

2.1 G22 Handles

Chapter G22 makes heavy use of data structures for passing information between functions. For portability reasons these structures are not referred to directly, but through void pointers. Throughout the documentation these pointers are referred to as G22 handles.
Once the G22 handle is no longer required the associated memory should be released by calling g22zac. It is always safe to release the memory associated with a G22 handle as no G22 handle will ever reference another.

2.2 Specifying a Linear Model

Let D denote a data matrix with n observations on md independent variables, denoted V1, V2, , Vmd . Let y denote a vector of n observations on a dependent variable.
A linear model, M, as the term is used in this chapter, expresses a relationship between the independent variables, Vj, and the dependent variable. This relationship can be expressed as a series of additive terms T1+ T2+ , with each term, Tt, representing either a single independent variable Vj, called the main effect of Vj, or the interaction between two or more independent variables. An interaction term, denoted here using the . operator, allows the effect of an independent variable on the dependent variable to depend on the value of one or more other independent variables.

3 Recommendations on Choice and Use of Available Functions

3.1 G22 Handles

Once any G22 handle is no longer required the associated memory should be released by calling g22zac.
All G22 handles have optional arguments associated with them. Some of these optional arguments are specific to a particular type of G22 handle and are described in the documentation of the function that creates the G22 handle. Other optional arguments are common across all G22 handles. These are described in the documentation for g22zmc and g22znc.

3.2 Specifying a Linear Model

Prior to specifying a linear model the data matrix, D, must be described. This is done using g22ybc. The linear model, M, can then be specified as a text string containing a formula. This allows the model to be specified via variable names and avoids the need to explicitly handle interaction terms. The linear model is specified using g22yac and the documentation for that function describes the syntax of the formula.
In many of the functions in the NAG Library, for example the regression functions in Chapter G02, a linear model is specified directly via the design matrix, X. The design matrix is defined by the data matrix, D and the linear model, M and its construction usually requires the use of dummy variables. g22ycc constructs the design matrix from the formula supplied to g22yac.
The utility function g22ydc can be used to obtain labels for the parameters of the model as well as a variety of information required by some of the functions in Chapter G02.

4 Functionality Index

Linear model,  
construct design matrix   g22ycc
data description   g22ybc
nested model   g22ydc
specification from formula string   g22yac
Service functions,  
destroy a G22 handle   g22zac
general option getting function   g22znc
general option setting function   g22zmc

5 Auxiliary Functions Associated with Library Function Arguments

None.

6 Withdrawn or Deprecated Functions

None.

7 References

None.