summary.spse: summary method for class spse

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Method for summarizing the results of objects of class 'spse'

Usage

1
2
## S3 method for class 'spse'
summary(object,...)

Arguments

object

an object of class 'spse'

...

additional arguments to be passed

Details

The summary function summary.spse returns an objects of class 'spse' organized in a coefficient matrix.

The summary is generated looping over the number of equations in the system.

Value

An object of class 'summary.spse'

Author(s)

Gianfranco Pirasgpiras@mac.com

See Also

spseml, spsegm,

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(Produc, package = "Ecdat")
data(usaww)
Produc <- Produc[Produc$year<1973, ]
eq1 <- log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp 
eq2 <- log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp 
eq3 <- log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp 
formula<-list(tp1 = eq1, tp2 = eq2, tp3=eq3)
w<-mat2listw(usaww)
se<-spsegm(formula, data=Produc, w=w, panel= TRUE,lags=list(c(TRUE,TRUE,TRUE),c(TRUE,TRUE,TRUE),c(TRUE,TRUE,TRUE)), errors=list(FALSE,TRUE,FALSE),endogenous=list(c(FALSE,TRUE,FALSE),c(TRUE,FALSE,FALSE),c(TRUE,FALSE,FALSE)))
summary(se)

spse documentation built on May 2, 2019, 4:54 p.m.

Related to summary.spse in spse...