This function repeats the output that is shown after a call of var_main.

var_summary(av_state, msg = NULL)

Arguments

av_state

an object of class av_state that was the result of a call to var_main

msg

an optional message to display at the start. If this argument is NULL, a default message is shown instead.

Examples

# NOT RUN {
av_state <- load_file("../data/input/pp5 nieuw compleet.sav",log_level=3)
av_state <- var_main(av_state,c('SomBewegUur','SomPHQ'),criterion='BIC',log_level=3)
# av_state is the result of a call to var_main
# var_summary just repeats the results of var_main
var_summary(av_state)
# }