-
Notifications
You must be signed in to change notification settings - Fork 20
/
NAMESPACE
48 lines (47 loc) · 1.61 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
importFrom(Rcpp, evalCpp)
useDynLib(mfbvar, .registration = TRUE)
import(stats)
importFrom(magrittr,"%>%")
importFrom(tibble,"tibble")
importFrom(dplyr, "group_by", "summarize", "ungroup", "mutate", "transmute", "bind_rows", "pull")
importFrom(lubridate, "%m-%", "%m+%", "days", "ymd", "quarter", "month", "year",
"as_date", "day", "days_in_month", "ceiling_date", "floor_date")
import(ggplot2)
importFrom(zoo, "as.Date", "zoo", "as.Date.ts", "index", "merge.zoo")
importFrom(stochvol,svsample)
S3method(print, mfbvar_prior)
S3method(summary, mfbvar_prior)
S3method(print, mfbvar)
S3method(summary, mfbvar)
S3method(plot, mfbvar_minn)
S3method(plot, mfbvar_ss)
S3method(plot, mfbvar_ssng)
S3method(plot, mfbvar_dl)
S3method(plot, mfbvar_prior)
S3method(mcmc_sampler, mfbvar_minn_fsv)
S3method(mcmc_sampler, mfbvar_dl_fsv)
S3method(mcmc_sampler, mfbvar_ss_fsv)
S3method(mcmc_sampler, mfbvar_ssng_fsv)
S3method(mcmc_sampler, mfbvar_minn_diffuse)
S3method(mcmc_sampler, mfbvar_dl_diffuse)
S3method(mcmc_sampler, mfbvar_ss_diffuse)
S3method(mcmc_sampler, mfbvar_ssng_diffuse)
S3method(mcmc_sampler, mfbvar_minn_csv)
S3method(mcmc_sampler, mfbvar_ss_csv)
S3method(mcmc_sampler, mfbvar_ssng_csv)
S3method(mcmc_sampler, mfbvar_minn_iw)
S3method(mcmc_sampler, mfbvar_ss_iw)
S3method(mcmc_sampler, mfbvar_ssng_iw)
S3method(mdd, mfbvar_ss_iw)
S3method(mdd, mfbvar_minn_iw)
S3method(predict, mfbvar)
S3method(predict, sfbvar)
importFrom("methods", "hasArg")
export(mdd)
export(set_prior)
export(update_prior)
export(estimate_mfbvar)
export(interval_to_moments)
export(varplot)
importFrom(GIGrvg,rgig)
importFrom(RcppParallel, RcppParallelLibs)