facebook / facebook/prophet

select_ has been depreciated - R dyplot.prophet

Open
#2,495 0 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.