NAG FL Interface
g22ycf (lm_​design_​matrix)

Note: please be advised that this routine is classed as ‘experimental’ and its interface may be developed further in the future. Please see Section 4 in How to Use the NAG Library for further information.
Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g22ycf generates a design matrix from a data matrix and model description.

2 Specification

Fortran Interface
Subroutine g22ycf ( hform, hddesc, dat, lddat, sddat, hxdesc, x, ldx, sdx, mx, ifail)
Integer, Intent (In) :: lddat, sddat, ldx, sdx
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: mx
Real (Kind=nag_wp), Intent (In) :: dat(lddat,sddat)
Real (Kind=nag_wp), Intent (Inout) :: x(ldx,sdx)
Type (c_ptr), Intent (In) :: hform, hddesc
Type (c_ptr), Intent (Inout) :: hxdesc
C Header Interface
#include <nag.h>
void  g22ycf_ (void **hform, void **hddesc, const double dat[], const Integer *lddat, const Integer *sddat, void **hxdesc, double x[], const Integer *ldx, const Integer *sdx, Integer *mx, Integer *ifail)
The routine may be called by the names g22ycf or nagf_blgm_lm_design_matrix.

3 Description

g22ycf generates a design matrix from a data matrix and a model description. Design matrices encapsulate the observed values of the independent variables and the required model in a form that can be used by many of the model fitting routines available in the NAG Library, for example those in Chapter G02.

3.1 Notation

Let D denote a data matrix with n observations on md independent variables, denoted by Vj, for j=1,2,,md. If Vj is a categorical variable, let Lj denote the number of levels associated with it. If Vj is a binary, ordinal or continuous variable, let Lj=1.
Let Vji denote the ith value of Vj.
Let M denote a model made up of one or more terms, denoted by Ti. Each term consists of either a main effect or an interaction and hence can be described using one or more variable names Vj and the interaction operator ‘.’. The operator ‘+’ is used to denote the addition of a term to the model. Therefore, M= T1+ T2+ T3= V1+ V2+ V1. V2 denotes a model with three terms, the first two terms being the main effects for variables V1 and V2 and the last term the interaction between them. For simplicity we reorder the terms of the model by the number of variables in them, so main effects come first, then two-way interactions, then three-way interactions etc. By default it is assumed that the model M contains a mean effect (or intercept term), if the mean effect is excluded, this will be denoted by ‘-1’, so M=T1 is a model with one term and a mean effect and M=T1-1 is the same model with the mean effect dropped.
g22ycf generates an n×mx design matrix, X, from D and M.

3.2 Dummy Variables

When constructing a design matrix, we cannot work directly with categorical variables. Categorical variables must first be recoded into dummy variables. A categorical variable Vj requires Lj dummy variables. Let Dj denote an n×Lj matrix of dummy variables for Vj defined as
Dlij = { 1 ;  if ​Vji=l, 0 ;  otherwise  
where Dlj is the lth column of Dj and Dlij is the ith element of Dlj.
For a binary, ordinal or continuous variable, D1ij=Vji.

3.3 Full Design Matrix

Given a model, M, and the matrices of dummy variables constructing the full design matrix XF is trivial. Each term is processed in order and
  1. 1.If term i is a main effect, that is Ti=Vj for some j, Dj is copied into XF.
  2. 2.If term i is a two-way interaction, that is Ti= Vj. Vk, for some jk , then
    1. (i)Loop over lj=1,2,Lj.
    2. (ii)Loop over lk=1,2,Lk.
    3. (iii)Add a column to XF corresponding to the element-wise product of Dljj and Dlkk.
  3. 3.Higher interaction terms are handled in a similar manner as the two-way interactions by adding columns constructed from multiplying all combinations of the columns of the corresponding Ds that correspond to the variables involved. In all cases, the variables towards the right hand side of a term are iterated over the quickest.

3.4 Contrasts

Using the full design matrix XF in an analysis can result in an overparameterized model. This is due to XF often not being of full rank as the sum of all the dummy variables for a particular variable is a vector of ones. This source of overparameterization can be alleviated by using a design matrix X where (some) dummy variables are replaced by contrasts. For a categorical variable Vj the contrasts are a set of Lj-1 functionally independent linear combinations of the dummy variables.
Whilst the choice of contrasts used in term Ti will affect the individual model coefficients (parameters), it has no effect on the overall contribution of Ti.
For a given variable Vj, the contrasts can be represented by an Lj×Lj-1 matrix, Cj. The rows of Cj correspond to a particular value of Vj and the columns correspond to the values to use in the design matrix.
Six types of contrast are available in g22ycf; two types of treatment contrasts, two types of sum contrasts, Helmert contrasts and polynomial contrasts. Unless specified otherwise, the contrasts used by g22ycf are treatment contrasts relative to the first level. See the description of the optional parameter Contrast in g22yaf for ways of changing the contrasts used.

3.4.1 Treatment Contrasts

Treatment contrasts are taken relative to either the first or last level of the variable. For example, if Lj=4,
Cj= ( 0 0 0 1 0 0 0 1 0 0 0 1 )  
would be the contrast matrix for Vj using treatment contrasts relative to the first level. The contrast matrix obtained when using treatment contrasts relative to the last level is similar, but the row of zeros appears at the bottom and all other rows are shifted up one.
Strictly speaking, the term contrast implies that each row in the contrast matrix sums to zero. That is not the case for treatment contrasts, however they are included as this coding is commonly used in practice.

3.4.2 Sum Contrasts

Sum contrasts are similar to treatment contrasts and again can be taken relative to the first or last level of the variable. Unlike treatment contrasts, sum contrasts effectively constrain the coefficients related to the variable to sum to zero. For example, if Lj=4,
Cj= ( 1 0 0 0 1 0 0 0 1 -1 -1 -1 )  
would be the contrast matrix for Vj using treatment contrasts relative to the last level. The contrast matrix obtained when using treatment contrasts relative to the first level is similar, but the row of -1s appears at the top and all other rows are shifted down one.

3.4.3 Helmert Contrasts

With Helmert contrasts level l of the variable is compared with the average effect of all previous levels. For example, if Lj=4,
Cj= ( −1 −1 −1 1 −1 −1 0 2 −1 0 0 3 )  
would be the contrast matrix for Vj using Helmert contrasts.

3.4.4 Polynomial Contrasts

With polynomial contrasts the entries in the columns of Cj correspond in linear, quadratic, cubic, quartic, etc. terms to a hypothetical underlying numeric variable that takes equally spaced values at each level. For example, if Lj=4,
Cj= ( -0.67 0.50 -0.22 -0.22 -0.50 0.67 0.22 -0.50 -0.67 0.67 0.50 0.22 )  
would be the contrast matrix for Vj using polynomial contrasts.

3.4.5 When Contrasts Can Be Used

Depending on the specifics of the model, M, it may not be possible to always replace the Lj dummy variables with Lj-1 contrasts for all variables in all terms and retain the same model. A simple example of this is a data matrix, D, with four observations and two variables which have two and three levels respectively. This data matrix might look something like:
D= ( 1 1 2 3 1 2 2 2 )  
For the sake of argument, assume that our model contains the main effect for each variable, but does not contain a mean effect (or intercept term). So using the notation established earlier, M=V1+V2-1. The full design matrix, XF, for this data matrix and model would be
XF = ( 1 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 1 0 )  
However, XF is not of full rank (and hence M is overparameterized) because the sum of the first two columns is a vector of ones as is the sum of the last three columns.
In order to alleviate this we might try constructing XC where the dummy variables have been replaced by contrasts. Assuming treatment contrasts, relative to the first level, we would have
XC = ( 0 0 0 1 0 1 0 1 0 1 1 0 )  
However, using XC makes an implicit assumption that the expected value of the dependent variable (the quantity being modelled) is zero when V1=1 and V2=1. This assumption was not made when we used XF and hence the two design matrices are not equivalent. One solution would be to use dummy variables for V1 and contrasts for V2, which would result in a design matrix, X of
X = ( 1 0 0 0 0 1 0 1 1 0 1 0 0 1 1 0 )  
Using X would give an equivalent model to using XF.
The algorithm used by g22ycf to decide which variables, in which terms, can be coded as contrasts and which need to be coded as dummy variables is described below.
Suppose Vj is any variable that appears in term Ti, let Ti(j) denote the term obtained by dropping Vj from Ti. For example, if T3= V1. V2. V3 , T 3(2) = V1. V3 . In this context, the empty term is taken to be the mean effect (or intercept term). We say that Ti(j) appears in M if there exists a term Tk, k<i, that contains all of the variables appearing in Ti(j) . In most cases Tk= T i(j) , but this is not required. Note, as stated earlier, the terms in M are ordered by the number of variables in them.
A variable, Vj in term Ti is coded by contrasts if Ti(j) appears in M and by dummy variables otherwise. It is, therefore, possible for variable Vj to be coded by contrasts in some terms and dummy variables in others within the same X.
The above rule assumes the presence of a mean effect. If no such effect is present in the model, the main effect of the first categorical variable is coded by dummy variables to compensate. If no main effects appear in the model, the warning ifail=14 is returned.
A longer description and informal proof that the resulting X is a suitable design matrix for the model of interest can be found in chapter two of Chambers and Hastie (1992).

3.5 Mean Effect

The mean effect (or intercept term) is included in a design matrix by adding a column of ones as the first column of X. However, many model fitting routines in the NAG Library handle the mean effect as a special case and do not require it to be explicitly added to the design matrix. Therefore, by default, g22ycf does not explicitly add the mean effect to the design matrix. This behaviour can be changed via the optional parameter Explicit Mean in g22yaf.

4 References

Chambers J M and Hastie T J (1992) Statistical Models in S Wadsworth and Brooks/Cole Computer Science Series

5 Arguments

1: hform Type (c_ptr) Input
On entry: a G22 handle to the internal data structure containing a description of the model M as returned in hform by g22yaf.
2: hddesc Type (c_ptr) Input
On entry: a G22 handle to the internal data structure containing a description of the data matrix, D as returned in hddesc by g22ybf.
3: dat(lddat,sddat) Real (Kind=nag_wp) array Input
On entry: the data matrix, D. By default Dij, the ith value for the jth variable, for i=1,2,,n and j=1,2,,md, should be supplied in dat(i,j).
If the optional parameter Storage Order, described in g22ybf, is set to VAROBS, Dij should be supplied in dat(j,i).
4: lddat Integer Input
On entry: the first dimension of the array dat as declared in the (sub)program from which g22ycf is called.
Constraints:
  • if the optional parameter Storage Order, described in g22ybf, is set to VAROBS, lddatmd;
  • otherwise lddatn.
5: sddat Integer Input
On entry: the second dimension of the array dat as declared in the (sub)program from which g22ycf is called.
Constraints:
  • if the optional parameter Storage Order, described in g22ybf, is set to VAROBS, sddatn;
  • otherwise sddatmd.
6: hxdesc Type (c_ptr) Input/Output
On entry: must be set to c_null_ptr, alternatively an existing G22 handle may be supplied in which case this routine will destroy the supplied G22 handle as if g22zaf had been called.
On exit: holds a G22 handle to the internal data structure containing a description of the design matrix, X. You must not change the G22 handle other than through the routines in Chapter G22.
7: x(ldx,sdx) Real (Kind=nag_wp) array Output
On exit: the design matrix, X. By default Xij, the ith value for the jth column, for i=1,2,,n and j=1,2,,mx, is returned in x(i,j).
If the optional parameter Storage Order, described in g22yaf, is set to VAROBS, Xij is returned in x(j,i).
If ldx or sdx are too small to hold x, the number of columns required to hold the design matrix is returned in mx.
Under some conditions it is possible to use the data matrix in place of the design matrix. Specifically, if D has no categorical variables, M has only main effects and either has no mean effect or the mean effect does not need to be explicitly added to the design matrix. If ldx or sdx are too small under such circumstances, ifail=71 is returned and hxdesc is set up in such a way as to allow dat to be used as the design matrix.
8: ldx Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which g22ycf is called.
Constraints:
  • if the optional parameter Storage Order, described in g22yaf, is set to VAROBS, ldxmx;
  • otherwise ldxn.
9: sdx Integer Input
On entry: the second dimension of the array x as declared in the (sub)program from which g22ycf is called.
Constraints:
  • if the optional parameter Storage Order, described in g22yaf, is set to VAROBS, sdxn;
  • otherwise sdxmx.
10: mx Integer Output
On exit: the minimum number of columns required to hold the design matrix.
In most cases mx=mx. The one exception is when ifail=71, that is the size of x was too small but the data matrix given in dat can be used as the design matrix. In this case mx holds the number of columns that would be required if only the relevant parts of dat were copied into a new array.
11: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=11
hform has not been initialized or is corrupt.
ifail=12
hform is not a G22 handle as generated by g22yaf.
ifail=13
A variable name used when creating hform is not present in hddesc.
Variable name: value.
ifail=14
The model contains categorical variables, but no intercept or main effects terms have been requested.
Please check the design matrix returned matches the model you require.
ifail=21
hddesc has not been initialized or is corrupt.
ifail=22
hddesc is not a G22 handle as generated by g22ybf.
ifail=31
On entry, column j of the data matrix, D, is not consistent with information supplied in hddesc, j=value.
ifail=32
Column j of the data matrix, D, required rounding more than expected when being treated as a categorical variable, j=value.
All output is returned using the rounded value(s).
ifail=41
On entry, n=value and lddat=value.
Constraint: lddatn.
ifail=42
On entry, md=value and lddat=value.
Constraint: lddatmd.
ifail=51
On entry, md=value and sddat=value.
Constraint: sddatmd.
ifail=52
On entry, n=value and sddat=value.
Constraint: sddatn.
ifail=61
On entry, hxdesc is not c_null_ptr or a recognised G22 handle.
ifail=71
On entry, the size of x is too small to hold the design matrix. dat can be used instead.
ifail=81
On entry, n=value and ldx=value.
Constraint: ldxn.
ifail=82
On entry, mx=value and ldx=value.
Constraint: ldxmx.
ifail=91
On entry, mx=value and sdx=value.
Constraint: sdxmx.
ifail=92
On entry, n=value and sdx=value.
Constraint: sdxn.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g22ycf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g22ycf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

g22ydf can be used to obtain labels for the columns of the design matrix X.
Many of the analysis routines that require a design matrix to be supplied allow submodels to be defined through the use of a vector of ones or zeros indicating whether a column of X should be included or excluded from the analyses (see for example isx in g02daf or g02gaf). This allows nested models to be fit without having to reconstruct the design matrix for each analysis. g22ydf offers a mechanism for constructing these vectors using submodels specified using g22yaf.

10 Example

This example creates and outputs two design matrices for a simple linear regression model. The first design matrix uses sum contrasts for all variables and the second uses a combination of polynomial and Helmert contrasts. Column labels are generated using g22ydf.
See also the examples for g22yaf, g22ybf and g22ydf.

10.1 Program Text

Program Text (g22ycfe.f90)

10.2 Program Data

Program Data (g22ycfe.d)

10.3 Program Results

Program Results (g22ycfe.r)

11 Optional Parameters

As well as the optional parameters common to all G22 handles described in g22zmf and g22znf, a number of additional optional parameters can be specified for a G22 handle holding the description of a design matrix as returned by g22ycf in hxdesc.
The value of an optional parameter can be queried using g22znf.
The remainder of this section can be skipped if you wish to use the default values for all optional parameters.
The following is a list of the optional parameters available. A full description of each optional parameter is provided in Section 11.1.

11.1 Description of the Optional Parameters

For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
Keywords and character values are case and white space insensitive.
FormulaaRead Only
This optional parameter returns a verbose formula string describing the model, M, used to create the design matrix. This formula will only contain variable names, the operators ‘+’ and ‘.’ and any contrast identifiers present.
Min Number of ColumnsiRead Only
This optional parameter returns the minimum number of columns required to hold the design matrix, X. In most cases Min Number of Columns=Number of Columns. The one exception is when ifail=71, that is the size of x was too small but the data matrix given in dat can be used as the design matrix. In this case, Number of Columns=mx=md and Min Number of Columns holds the number of columns that would be required if only the relevant parts of dat were copied into a new array.
Number of ColumnsiRead Only
This optional parameter returns mx, the number of columns in the design matrix.
Number of ObservationsiRead Only
This optional parameter returns n, the number of observations in the design matrix.
Storage OrderaRead Only
This optional parameter returns how the design matrix, X, is stored in x.
If Storage Order=OBSVAR, Xij, the value for the jth variable of the ith observation of the design matrix is stored in x(i,j).
If Storage Order=VAROBS, Xij, the value for the jth variable of the ith observation of the design matrix is stored in x(j,i).
It should be noted that Storage Order is not writeable. If you wish to change the storage order of the design matrix you need to change Storage Order in hform as described in Section 11 in g22yaf prior to calling g22ycf.