Nothing
acf.custom <- function(..., main, ylim) {
obj <- acf(..., plot=FALSE)
obj$acf <- obj$acf[-1,,,drop=FALSE]
obj$lag <- obj$lag[-1,,,drop=FALSE]
plot(obj, main=main, ylim=ylim)
}
#' @export
pacf.custom <- function(..., main, ylim) {
obj <- pacf(..., plot=FALSE)
obj$acf <- obj$acf[-1,,,drop=FALSE]
obj$lag <- obj$lag[-1,,,drop=FALSE]
plot(obj, main=main, ylim=ylim)
}
mutual.custom <- function(..., main, ylim) {
mi <- mutual(..., plot=FALSE)[-1]
plot(1:length(mi), mi, type = "h", xlab = "lag", ylab = "AMI",
main = main, ylim=ylim)
abline(h = 0)
}
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.