select_ has been depreciated - R dyplot.prophet
Open
- Dominant language
- Python
- Stars
- 20.4k
- Forks
- 4.6k
- Avg merge
- 19h 52m
- Merged PRs (30d)
- 1
Description
The select_ syntax has been deprecaited in dplyr for a while now. Line 473 on plot.R should be updated from
```{r}
dfTS <- xts::xts(df %>% dplyr::select_(.dots=colsToKeep), order.by = df$ds)
```
to
```{r}
dfTS <- xts::xts(df %>% dplyr::select(.cols = all_of(colsToKeep)), order.by = df$ds)
```
Contributor guide
Assessment
This issue has not been assessed yet.