mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-09-15 22:10:22 +00:00
Fixing bug on development version of R
This commit is contained in:
parent
211f30039a
commit
151c476030
1 changed files with 1 additions and 1 deletions
|
|
@ -885,7 +885,7 @@ make_all_seasonality_features <- function(m, df) {
|
||||||
#' @keywords internal
|
#' @keywords internal
|
||||||
regressor_column_matrix <- function(m, seasonal.features, modes) {
|
regressor_column_matrix <- function(m, seasonal.features, modes) {
|
||||||
components <- dplyr::data_frame(component = colnames(seasonal.features)) %>%
|
components <- dplyr::data_frame(component = colnames(seasonal.features)) %>%
|
||||||
dplyr::mutate(col = seq_len(n())) %>%
|
dplyr::mutate(col = seq_len(dplyr::n())) %>%
|
||||||
tidyr::separate(component, c('component', 'part'), sep = "_delim_",
|
tidyr::separate(component, c('component', 'part'), sep = "_delim_",
|
||||||
extra = "merge", fill = "right") %>%
|
extra = "merge", fill = "right") %>%
|
||||||
dplyr::select(col, component)
|
dplyr::select(col, component)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue