Skip to content

Commit

Permalink
fix check time over 10min problem for CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
wanghui5801 committed Jan 10, 2025
1 parent 639bd25 commit ede1caa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vignettes/series.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Y <- climate_indices$NAO
result_non_random <- pcCrossValidation(
X = X,
Y = Y,
numberset = seq(100, 500, by = 10),
numberset = seq(100, 500, by = 100),
E = 3,
tau = 2,
metric = "euclidean",
Expand Down Expand Up @@ -107,14 +107,14 @@ Y <- climate_indices$NAO
result_boot <- pcCrossValidation(
X = X,
Y = Y,
numberset = seq(100, 500, by = 10),
numberset = seq(100, 500, by = 100),
E = 3,
tau = 2,
metric = "euclidean",
h = 1,
weighted = FALSE,
random = TRUE,
bootstrap = 100 # Perform 100 bootstrap iterations
bootstrap = 10 # Perform 100 bootstrap iterations
)
```

Expand Down

0 comments on commit ede1caa

Please sign in to comment.