GLSME: Estimate regression parameters with correlated observations...

Description Usage Arguments Details Value Author(s) References Examples

View source: R/GLSME.R

Description

The GLSME function estimates parameters of a linear model via generalized least squares. It allows for correlated predictors and responses. Furthermore it allows for correlated measurement errors both in predictors and responses. The program specifically corrects for biase caused by these errors.

Usage

1
2
3
4
GLSME(y, D, Vt, Ve, Vd, Vu, EstimateVariance = c(TRUE, TRUE), CenterPredictor = TRUE, 
InitialGuess = NULL, eps = 0.001, MaxIter = 50, MaxIterVar = 50, epsVar = 0.001, 
OutputType = "short", Vttype = NULL, Vetype = NULL, Vdtype = NULL, Vutype = NULL, 
ED = NULL, EDtype = "SingleValue")

Arguments

y

A vector of observed response variables.

D

a design matrix in which each column corresponds to a parameter to be estimated in the B-vector/matrix. Each entry in these columns corresponds to a data point (e.g. a species in comparative studies). The first column will typically be a column of ones, which will estimate an intercept. Columns with indicators for categorical fixed effects can also be added. Each regression variable is added as a column vector. The program will automatically estimate one coefficient for each column in the design matrix and these will be output in the order of the columns in the design matrix. Note that columns corresponding to "random effects", indicated by nonzero entry in the Vd matrix below, will be centered on their means unless the option CenterPredictor = FALSE is used to instruct the program to not do this. If there is to be an INTERCEPT the user needs to put into D a constant column of 1s.

Vt

The response biological residual covariance matrix (see Details).

Ve

The response observation error covariance matrix (see Details). observation errors in the response variable. In a comparative study in which the response consists of species means, this will typically be a diagonal matrix with squared standard errors of the means along the diagonal.

Vd

Represents the true variance structure for the predictor variables. (see Details).

Vu

The predictor observation variances (see Details)

EstimateVariance

Option to turn off estimation of the variance parameters. This is a vector of TRUE or FALSE values, where the first value corresponds to the true residual variance, and the others correspond to the rest of the true predictor variances. All the predictor variances can also be turned on or off jointly by providing a single TRUE or FALSE value. The default is to estimate all variance components. If a FALSE value is given the program assumes that the input variance matrices are exact.

CenterPredictor

TRUE or FALSE option to turn off automatic centering of predictors.

InitialGuess

Starting value for the regression in the iterated GLS. The default is NULL, in which case the program will use an OLS estimate. A specific starting value can be given as a vector of numbers corresponding to each entry in the B-vector. An additional number can also be given to specify the starting value of the residual variance parameter.

eps

tolerance for iterated GLS

MaxIter

maximum number of iterations for iterated GLS

MaxIterVar

maximum number of iterations for iterated GLS

epsVar

tolerance for estimating variance parameters in predictors

OutputType

should just the estimates be presented and their standard errors ("short") or more detailed information ("long")

Vttype

Vt matrix type (see Details)

Vetype

Ve matrix type (see Details)

Vdtype

Vd matrix type (see Details)

Vutype

Vu matrix type (see Details)

ED

the expected value of the design matrix, can be NULL then is estimated from the data

EDtype

if ED is provided then specifies what is provided, allowed values are :

  • "constant" ED is a number and each value of D has mean equal to this number

  • "variablemean" ED is a vector of length of number of variables, each value is a mean for the given predictor variable

  • NULL ED is assumed to be calculated

Details

The code fits the general linear model with correlated data and observation error in both dependent and independent variables. The code fits the model

y = Dβ + r, r \sim N(0,V), V = σ^{2}V_{t} + V_{e} + Var[Uβ|D],

where y is a vector of observed response variables, D is an observed design matrix, β is a vector of parameters to be estimated, V_{t} is a matrix representing the true residual variance up to a scale parameter, σ^{2}, that is estimated by the program, V_{e} is a matrix of known measurement variance in the response variable, and Var[Uβ|D] is a matrix representing effects of measurement error in the predictor variables (see appendix of Hansen and Bartoszek 2012). To build the Var[Uβ|D] matrix, the program needs a known measurement variance matrix V_{u} and a true variance matrix V_{xt} for each of the predictor variables (these will be zero for fixed effects). The true variance matrices are assumed to be on the form V_{xt} = σ_{x}^{2}Sx , where Sx is a matrix supplied by the user, and σ_{x}^{2} is a scale parameter that the program estimates by maximum likelihood.

Note that this program cannot be used to fit parameters that enter nonlinearly into the variance or the design matrix, as the α in the adaptation-inertia model, but it can be used to fit the other parameters in such models conditionally on given values of the parameterized values of the matrices (and could hence be used as a subroutine in a program for fitting such models).

Three important notes for the user :

The program tries to recognize the structure of the Vt, Ve, Vd and Vu matrices passed (see the supplementary information to Hansen and Bartoszek 2012) otherwise the user can specify how the matrix looks like in the appropriate matrix type variable, these can be in the respective Vttype, Vetype, Vdtype or Vutype parameter:

Value

Author(s)

Krzysztof Bartoszek

References

Bartoszek, K. and Pienaar, J. and Mostad. P. and Andersson, S. and Hansen, T. F. (2012) A phylogenetic comparative method for studying multivariate adaptation. Journal of Theoretical Biology 314:204-215.

Hansen, T.F. (1997) Stabilizing selection and the comparative analysis of adaptation. Evolution 51:1341-1351.

Hansen, T.F. and Bartoszek, K. (2012) Interpreting the evolutionary regression: the interplay between observational and biological errors in phylogenetic comparative studies. Systematic Biology 61(3):413-425.

Hansen, T.F. and Pienaar, J. and Orzack, S.H. (2008) A comparative method for studying adaptation to randomly evolving environment. Evolution 62:1965-1977.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
n<-3 ## number of species
apetree<-ape::rtree(n)
### Define Brownian motion parameters to be able to simulate data under the Brownian motion model.
BMparameters<-list(vX0=matrix(0,nrow=2,ncol=1),Sxx=rbind(c(1,0),c(0.2,1)))
### Now simulate the data and remove the values corresponding to the internal nodes.
xydata<-mvSLOUCH::simulBMProcPhylTree(apetree,X0=BMparameters$vX0,Sigma=BMparameters$Sxx)
xydata<-xydata[(nrow(xydata)-n+1):nrow(xydata),]

x<-xydata[,1]
y<-xydata[,2]

yerror<-diag((stats::rnorm(n,mean=0,sd=0.1))^2) #create error matrix
y<-mvtnorm::rmvnorm(1,mean=y,sigma=yerror)[1,]
xerror<-diag((stats::rnorm(n,mean=0,sd=0.1))^2) #create error matrix
x<-mvtnorm::rmvnorm(1,mean=x,sigma=xerror)[1,]
GLSME(y=y, CenterPredictor=TRUE, D=cbind(rep(1, n), x), Vt=ape::vcv(apetree), 
Ve=yerror, Vd=list("F",ape::vcv(apetree)), Vu=list("F", xerror))

Example output

Loading required package: mvtnorm
Loading required package: corpcor
[1] "Finished running iteration 1 of iterated GLS. Current estimate : "
                      [,1]
                 0.8335679
x                0.1644604
ResponseVariance 0.7784966
[1] "Finished running iteration 2 of iterated GLS. Current estimate : "
                 ResponseVariance
                        0.8333517
x                       0.1640685
ResponseVariance        0.8392678
[1] "Finished running iteration 3 of iterated GLS. Current estimate : "
                      [,1]
                 0.8334249
x                0.1641899
ResponseVariance 0.8129200
$GLSestimate
       [,1]
  0.8333945
x 0.1641395

$errorGLSestim
       [,1]
  0.4569147
x 0.4032091

$BiasCorrectedGLSestimate
       [,1]
  0.8352535
x 0.1662016

$errorBiasCorrectedGLSestim
       [,1]
  0.4569147
x 0.4084535

$K
              x
  1 -0.01118528
x 0  0.98759270

$R2
          [,1]
[1,] 0.2811007

$R2BiasCorrectedModel
          [,1]
[1,] 0.2811315

$LogLikelihood
[1] -1.773932

$LogLikelihoodBiasCorrectedModel
[1] -1.773923

$PredictorVarianceConstantEstimate
                x 
0.000000 1.709717 

$ResponseVarianceConstantEstimate
[1] 0.81292

GLSME documentation built on Sept. 16, 2019, 1:03 a.m.