R/summary.R

Defines functions summary.autoSEM

Documented in summary.autoSEM

#' Summary results from autoSEM.
#'
#' @param object An object from autoSEM.
#' @param ... Other arguments.
#' @export
#' @method summary autoSEM


summary.autoSEM <- function(object, ...){


  ret <- list(call = object$call,
              fit = object$fit,
              solution = object$solution)

  #ret <- object$fit


  class(ret) <- "summary.autoSEM"
  return(ret)
}

Try the autoSEM package in your browser

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

autoSEM documentation built on May 29, 2017, 7:18 p.m.