Displaying 1 result from an estimated 1 matches for "surfit2".
Did you mean:
surfit
2007 Aug 16
0
summarising systemfit with saveMemory
...the systemfit package, the summary is set to print the McElroy's
measure of fit unless it's NULL. When the option saveMemory = TRUE,
the McElroy isn't included, instead it defaults to NA. Thus I am
unable to use summary.systemfit.
> library(systemfit)
> example(systemfit)
> surfit2 <- systemfit("SUR",system,data=Kmenta,saveMemory=T)
> summary(surfit2)
As far as I can tell, this is a result of the following code.
> print.summary.systemfit
<<--SNIP-->>
if (!is.null(x$mcelr2)) {
cat("McElroy's R-squared value for the system: ")
ca...