How to do diagnostic analysis with the systemfit package?

85 Views Asked by At

How to do the diagnostic analysis of the model adjusted by the systemfit package, for example:

library(systemfit)
data("Kmenta")

eqDemand  <- consump ~ price + income
eqSupply  <- consump ~ price + farmPrice + trend 
system    <- list( demand = eqDemand, supply = eqSupply )

fitsur    <- systemfit( system, "SUR", data = Kmenta, maxit = 100 )
influence.measures(fitsur)

Error in UseMethod("influence")

help of the package

0

There are 0 best solutions below