printSUR {panelSUR} | R Documentation |
Print summary of estimated equation system
Description
This function prints a summary of the estimated equation system.
Usage
printSUR(object)
Arguments
object |
an object of class |
Value
No values are returned from the printSUR
function. However, when called, it generates a visual output in the console, consisting of a formatted table containing the results of the SUR estimation and other relevant information.
Examples
data("SURdata", package="panelSUR")
## Data preparation
library(plm)
datap <- pdata.frame(data, index=c("IND", "TIME"))
## Equations specification
eq1<-Y1~X1+X2
eq2<-Y2~X1+X2+X3
eqlist<-c(eq1,eq2)
## System estimation
mod1<-SURest(eqlist=eqlist,method="1wayWB",data=datap)
## Summary of estimation results
printSUR(mod1)
[Package panelSUR version 0.1.0 Index]