Pārlūkot izejas kodu

Refine R code a little (#263)

* Replace tail(-1) with [-1]

* Don't need to import utils anymore
hoxo_m 8 gadi atpakaļ
vecāks
revīzija
fd125c4760
2 mainītis faili ar 2 papildinājumiem un 4 dzēšanām
  1. 1 2
      R/DESCRIPTION
  2. 1 2
      R/R/prophet.R

+ 1 - 2
R/DESCRIPTION

@@ -22,8 +22,7 @@ Imports:
     rstan (>= 2.14.0),
     scales,
     stats,
-    tidyr (>= 0.6.1),
-    utils
+    tidyr (>= 0.6.1)
 Suggests:
     knitr,
     testthat,

+ 1 - 2
R/R/prophet.R

@@ -333,8 +333,7 @@ set_changepoints <- function(m) {
       # Place potential changepoints evenly through the first 80 pcnt of
       # the history.
       cp.indexes <- round(seq.int(1, floor(nrow(m$history) * .8),
-                          length.out = (m$n.changepoints + 1))) %>%
-                    utils::tail(-1)
+                          length.out = (m$n.changepoints + 1))[-1])
       m$changepoints <- m$history$ds[cp.indexes]
     } else {
       m$changepoints <- c()