https://github.com/cran/fArma
Raw File
Tip revision: 534d503eab7ba789b1b2a72554ca57fdb04b3268 authored by Tobias Setz on 16 November 2017, 14:16:42 UTC
version 3042.81
Tip revision: 534d503
NAMESPACE

################################################
## fArma
################################################


################################################
## useDynLib
################################################

useDynLib("fArma")


################################################
## import name space
################################################

import("timeDate")
import("timeSeries")
import("fBasics")

importFrom("grDevices", "heat.colors", "palette")
importFrom("graphics", grid, mtext, par, polygon, title)
importFrom("methods", new)
importFrom("stats", ARMAacf, Box.test, acf, ar, arima,
	as.formula, diffinv, fft, lm.fit, ls.print,
	lsfit, model.frame, na.pass, pnorm, predict,
	printCoefmat, qnorm, qqline, qqnorm, rexp,
	rnorm, runif, ts, tsp, var)
importFrom("utils", capture.output, menu)


################################################
## Export Functions
################################################

exportPattern(".")

S3method("fitted", "fARMA")
S3method("plot", "fARMA")
S3method("predict", "fARMA")
S3method("residuals", "fARMA")
S3method("summary", "fARMA")
S3method("coef", "fARMA")
back to top