Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karakastarik committed Aug 23, 2021
1 parent 0d8fee2 commit 21a0928
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 28 deletions.
8 changes: 4 additions & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by roxygen2: do not edit by hand

S3method(summary,adf)
S3method(summary,all)
S3method(summary,kpss)
S3method(summary,pp)
export(summary_adf)
export(summary_all)
export(summary_kpss)
export(summary_pp)
4 changes: 2 additions & 2 deletions R/summary-adf.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#' @param lag Integer lag length. For example, if the value is \code{10}, results will come for lag lengths of \code{1:10}.
#' @export
#' @examples
#' summary.adf(ts_model,10)
#' summary_adf(ts_model,10)

summary.adf <- function(model,lag) {
summary_adf <- function(model,lag) {

if (lag>20) {
stop("Lag can not be greater than 20.")
Expand Down
4 changes: 2 additions & 2 deletions R/summary-all.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#' @param lag Integer lag length. For example, if the value is \code{10}, results will come for lag lengths of \code{1:10}.
#' @export
#' @examples
#' summary.all(ts_model,10)
#' summary_all(ts_model,10)

summary.all <- function(model,lag) {
summary_all <- function(model,lag) {

if (lag>20) {
stop("Lag can not be greater than 20.")
Expand Down
4 changes: 2 additions & 2 deletions R/summary-kpss.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#' @param lag Integer lag length. For example, if the value is \code{10}, results will come for lag lengths of \code{1:10}.
#' @export
#' @examples
#' summary.kpss(ts_model,10)
#' summary_kpss(ts_model,10)

summary.kpss <- function(model,lag) {
summary_kpss <- function(model,lag) {

if (lag>20) {
stop("Lag can not be greater than 20.")
Expand Down
4 changes: 2 additions & 2 deletions R/summary-pp.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#' @param lag Integer lag length. For example, if the value is \code{10}, results will come for lag lengths of \code{1:10}.
#' @export
#' @examples
#' summary.pp(ts_model,10)
#' summary_pp(ts_model,10)

summary.pp <- function(model,lag) {
summary_pp <- function(model,lag) {

if (lag>20) {
stop("Lag can not be greater than 20.")
Expand Down
10 changes: 10 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Test environments
* local R installation, R 4.1.0
* ubuntu 16.04 (on travis-ci), R 4.1.0
* win-builder (devel)

## R CMD check results

0 errors | 0 warnings | 1 note

* This is a new release.
8 changes: 4 additions & 4 deletions man/summary.adf.Rd → man/summary_adf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/summary.all.Rd → man/summary_all.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/summary.kpss.Rd → man/summary_kpss.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/summary.pp.Rd → man/summary_pp.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 21a0928

Please sign in to comment.