File: methods-show.Rd

package info (click to toggle)
fgarch 3010.82-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 812 kB
  • ctags: 14
  • sloc: fortran: 334; makefile: 13
file content (62 lines) | stat: -rw-r--r-- 843 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\name{show-methods}


\docType{methods}


\alias{show-methods}
\alias{show,ANY-method}
\alias{show,fGARCH-method}
\alias{show,fGARCHSPEC-method}


\title{GARCH Modelling Show Methods}


\description{

    Show methods for GARCH Modelling. 

}


\section{Methods}{
    \describe{

    \item{object = "ANY"}{
        Generic function.
        }
    \item{object = "fGARCH"}{
        Print function for objects of class \code{"fGARCH"}.
        } 
    \item{object = "fGARCHSPEC"}{
        Print function for objects of class \code{"fGARCH"}.
        }
        
    }
}

    
\author{

    Diethelm Wuertz for the Rmetrics \R-port.
    
}


\examples{
## garchSpec -
   spec = garchSpec()
   print(spec)

## garchSim -
   x = garchSim(spec, n = 500) 

## garchFit - 
   fit = garchFit(~ garch(1, 1), data = x)
   print(fit)
}


\keyword{models}