R/print.Discrete.SGoF.R

Defines functions print.Discrete.SGoF

Documented in print.Discrete.SGoF

print.Discrete.SGoF <-
function(x,...){
cat("Call:\n") 
print(x$call) 
cat("\n")
cat("Parameters:","\n")
cat("alpha=",x$alpha,"\n")
cat("gamma=",x$gamma,"\n")
if(is.na(x$K)==FALSE){cat("K=",x$K,"\n")}
if(is.na(x$method)==FALSE){cat("Method=",x$method,"\n")}
cat("Discrete=",x$Discrete,"\n")
cat("Sides=",x$Sides,"\n")
cat("\n")
cat("Rejections:\n") 
print(x$Rejections)
cat("FDR:\n") 
print(x$FDR)
}

Try the sgof package in your browser

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

sgof documentation built on Sept. 8, 2023, 5:34 p.m.