R/print.ellipsefit.R

Defines functions print.ellipsefit

print.ellipsefit <- function(x,...) {
  cat("Call:\n")
  print(x$call)
  Td <- qt(0.975,x$fit.statistics["d.f."]) 
  if (x$method!="direct") {
  cat("\nDelta Method Standard Errors and 95% C.I.'s:\n")
  error <- x$Std.Errors
  theEstimates <- x$values[names(error)]
  low2 <- theEstimates-error*Td
  high2 <- theEstimates+error*Td
  print(cbind("Estimates"=theEstimates,
              "S.E."=error,"low"=low2,"high"=high2),digits=4) }
  else {
    cat("\nEstimates:\n")
    print(x$values)
  }
invisible(x)}

Try the hysteresis package in your browser

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

hysteresis documentation built on May 15, 2021, 1:09 a.m.