R/print.ClusterVARCoef.R

Defines functions print.ClusterVARCoef

Documented in print.ClusterVARCoef

print.ClusterVARCoef <- function(x, ...) {
    #### Return FunctionOutput here ##
    FunctionOutput = list(Lags = x$Lags,
                          Classification = x$Classification,
                          VAR_coefficients = x$VAR_coefficients,
                          Exogenous_coefficients = x$Exogenous_coefficients,
                          Sigma = x$Sigma,
                          Proportions = x$Proportions,
                          PredictableTimepoints = x$PredictableTimepoints,
                          Converged = x$Converged)
    print(FunctionOutput)
} # eoF

Try the ClusterVAR package in your browser

Any scripts or data that you put into this service are public.

ClusterVAR documentation built on April 4, 2025, 2:20 a.m.