print.spse: print method for class splm

Description Usage Arguments Details Author(s) See Also Examples

Description

Method to print objects of class summary.spse and spse

Usage

1
2
## S3 method for class 'spse'
print(x, digits = max(3,getOption("digits") -3), ...)

Arguments

x

an object of class spse

digits

minimal number of significant digits, see print.default

...

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.

Author(s)

Gianfranco Pirasgpiras@mac.com

See Also

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 print.spse in spse...