-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathggcpgram.Rd
48 lines (40 loc) · 973 Bytes
/
ggcpgram.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tslib.R
\name{ggcpgram}
\alias{ggcpgram}
\title{Plots a cumulative periodogram}
\usage{
ggcpgram(
ts,
taper = 0.1,
colour = "#000000",
linetype = "solid",
conf.int = TRUE,
conf.int.colour = "#0000FF",
conf.int.linetype = "dashed",
conf.int.fill = NULL,
conf.int.alpha = 0.3
)
}
\arguments{
\item{ts}{\code{stats::ts} instance}
\item{taper}{Proportion tapered in forming the periodogram}
\item{colour}{Line colour}
\item{linetype}{Line type}
\item{conf.int}{Logical flag indicating whether to plot confidence intervals}
\item{conf.int.colour}{line colour for confidence intervals}
\item{conf.int.linetype}{line type for confidence intervals}
\item{conf.int.fill}{fill colour for confidence intervals}
\item{conf.int.alpha}{alpha for confidence intervals}
}
\value{
ggplot
}
\description{
Plots a cumulative periodogram
}
\examples{
\dontrun{
ggcpgram(AirPassengers)
}
}