lagShapes: Estimated lag shapes

Description Usage Arguments Value See Also Examples

View source: R/dlsem.r

Description

Estimated lag shapes and their standard errors are provided.

Usage

1
lagShapes(x, cumul = FALSE)

Arguments

x

An object of class dlsem.

cumul

Logical. If TRUE, cumulative causal effects are returned. Default is FALSE.

Value

A list of lists, one for each endogenous variable, each containing several matrices including the estimated lag shapes and their standard errors.

See Also

dlsem; causalEff; lagPlot.

Examples

1
2
3
4
5
6
7
8
data(industry)
indus.code <- list(
  Consum~ecq(Job,0,5),
  Pollution~ecq(Job,1,8)+ecq(Consum,1,7)
  )
indus.mod <- dlsem(indus.code,group="Region",exogenous=c("Population","GDP"),data=industry,
  log=TRUE)
lagShapes(indus.mod)

dlsem documentation built on April 17, 2020, 1:14 a.m.