mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-27 22:46:02 +00:00
imports RcppParallel and excludes one function that is already in the namespace by importing Rcpp (#1779)
This commit is contained in:
parent
2d8e6c7fd1
commit
3adcf9312d
3 changed files with 4 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ Imports:
|
|||
ggplot2,
|
||||
grid,
|
||||
methods,
|
||||
RcppParallel (>= 5.0.1),
|
||||
rstan (>= 2.18.1),
|
||||
rstantools (>= 2.0.0),
|
||||
scales,
|
||||
|
|
@ -43,6 +44,7 @@ License: MIT + file LICENSE
|
|||
LinkingTo:
|
||||
BH (>= 1.66.0),
|
||||
Rcpp (>= 0.12.0),
|
||||
RcppParallel (>= 5.0.1),
|
||||
RcppEigen (>= 0.3.3.3.0),
|
||||
rstan (>= 2.18.1),
|
||||
StanHeaders (>= 2.18.0)
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ export(predictive_samples)
|
|||
export(prophet)
|
||||
export(prophet_plot_components)
|
||||
import(Rcpp)
|
||||
import(RcppParallel, except = LdFlags)
|
||||
import(rlang)
|
||||
importFrom(dplyr,"%>%")
|
||||
useDynLib(prophet, .registration = TRUE)
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ globalVariables(c(
|
|||
#' @export
|
||||
#' @importFrom dplyr "%>%"
|
||||
#' @import Rcpp
|
||||
#' @rawNamespace import(RcppParallel, except = LdFlags)
|
||||
#' @import rlang
|
||||
#' @useDynLib prophet, .registration = TRUE
|
||||
prophet <- function(df = NULL,
|
||||
|
|
|
|||
Loading…
Reference in a new issue