zzz.R 494 B

12345678910111213141516
  1. ## Copyright (c) 2017-present, Facebook, Inc.
  2. ## All rights reserved.
  3. ## This source code is licensed under the BSD-style license found in the
  4. ## LICENSE file in the root directory of this source tree. An additional grant
  5. ## of patent rights can be found in the PATENTS file in the same directory.
  6. .onLoad <- function(libname, pkgname) {
  7. .prophet.stan.model <- get_prophet_stan_model()
  8. assign(
  9. ".prophet.stan.model",
  10. .prophet.stan.model,
  11. envir=parent.env(environment())
  12. )
  13. }