Skip to content

Commit 067b990

Browse files
committed
Fix fitted.ar roxygen docs
Signed-off-by: Yuan Tang <[email protected]>
1 parent 7ed1bc9 commit 067b990

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

NAMESPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ S3method(autoplot,tsmodel)
6666
S3method(autoplot,varprd)
6767
S3method(autoplot,xts)
6868
S3method(autoplot,zooreg)
69+
S3method(fitted,ar)
6970
S3method(fortify,Arima)
7071
S3method(fortify,HoltWinters)
7172
S3method(fortify,KFS)
@@ -122,7 +123,6 @@ S3method(fortify,tsmodel)
122123
S3method(fortify,varprd)
123124
S3method(grid.draw,ggmultiplot)
124125
S3method(residuals,ar)
125-
export(fitted.ar)
126126
export(fortify_map)
127127
export(ggbiplot)
128128
export(ggcpgram)

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ggfortify 0.4.15
22

3-
* Removed support from objects in `dlm` library.
3+
* Removed `autoplot()` support for objects in `dlm` library.
44
* Resolved warnings in `R CMD check`.
55

66
## ggfortify 0.4.14

R/tslib.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ confint.acf <- function (x, ci = 0.95, ci.type = "white") {
178178
#' @return ts An time series of the one-step forecasts
179179
#' @examples
180180
#' fitted(ar(WWWusage))
181-
#' @export
181+
#' @exportS3Method fitted ar
182+
#' @method fitted ar
182183
fitted.ar <- function(object, ...) {
183184
x <- forecast::getResponse(object)
184185
return(x - stats::residuals(object))

cran-comments.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55

66
## R CMD check results
77

8-
0 errors | 0 warnings | 2 notes
9-
10-
The notes can be ignored.
8+
0 errors | 0 warnings | 0 notes
119

1210
## Notes
1311

1412
Notable changes are:
1513

16-
* Removed support from objects in `dlm` library.
14+
* Removed support for objects in `dlm` library.
1715
* Resolved warnings in `R CMD check`.

man/fitted.ar.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)