Nothing
### Utility functions --- used for testing, etc
zapNsmall <- function(x) if(is.double(x)) zapsmall(x) else x
summaryCobs <- function(x, level = 0.90, ...)
{
## Purpose: something like print(summary( cobs.result ))
## ----------------------------------------------------------------------
## Arguments: x: result of cobs(); level : to be compatible to old alpha=0.1
## ----------------------------------------------------------------------
## Author: Martin Maechler, Date: 15 Feb 2002, 16:55
str(lapply(x, zapNsmall), max.level = 1, ...)
px <- predict(x, interval = "both", level = level)
print(as.data.frame(px[, c("cb.lo", "ci.lo", "fit", "ci.up", "cb.up")]),...)
cat("knots :\n"); print(x$knots, ...)
cat("coef :\n"); print(x$coef, ...)
if(!is.null(x$sic)) {
print(cbind(lambda = x$pp.lambda, SIC = x$sic), ...)
}
}
cpuTime <- function(expr)
cat("Time elapsed:", format(system.time(expr)[3]),"\n")
##' Robust Range(): a cheap version of sfsmisc::rrange():
robrng <- function(x, coef=1.5)
boxplot.stats(x, coef = coef, do.conf = FALSE, do.out = FALSE)$stats[c(1, 5)]
## For testing (in ../tests/ ) only [in my other packages, have this hidden *in* pkg]
doExtras <- function() {
interactive() || nzchar(Sys.getenv("R_cobs_check_extra")) ||
identical("true", unname(Sys.getenv("R_PKG_CHECKING_doExtras")))
}
##' We want to use withAutoprint({...}) when available :
if(!exists("withAutoprint", mode="function")) withAutoprint <- identity
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.