Skip to content

Commit

Permalink
fix missing document
Browse files Browse the repository at this point in the history
  • Loading branch information
ygeunkim committed Nov 26, 2024
1 parent e48b63e commit a9c6f5a
Show file tree
Hide file tree
Showing 21 changed files with 42 additions and 20 deletions.
23 changes: 21 additions & 2 deletions R/member.R
Original file line number Diff line number Diff line change
Expand Up @@ -122,32 +122,35 @@ fitted.bvharmn <- function(object, ...) {
}

#' @rdname var_lm
#' @param x A `varlse` object
#' @param x Any object
#' @export
is.varlse <- function(x) {
inherits(x, "varlse")
}

#' @rdname vhar_lm
#' @param x A `vharlse` object
#' @param x Any object
#' @export
is.vharlse <- function(x) {
inherits(x, "vharlse")
}

#' @rdname bvar_minnesota
#' @param x Any object
#' @export
is.bvarmn <- function(x) {
inherits(x, "bvarmn")
}

#' @rdname bvar_flat
#' @param x Any object
#' @export
is.bvarflat <- function(x) {
inherits(x, "bvarflat")
}

#' @rdname bvhar_minnesota
#' @param x Any object
#' @export
is.bvharmn <- function(x) {
inherits(x, "bvharmn")
Expand All @@ -160,96 +163,112 @@ is.bvharmod <- function(x) {
}

#' @rdname predict
#' @param x Any object
#' @export
is.predbvhar <- function(x) {
inherits(x, "predbvhar")
}

#' @rdname forecast_roll
#' @param x Any object
#' @export
is.bvharcv <- function(x) {
inherits(x, "bvharcv")
}

#' @rdname irf
#' @param x Any object
#' @export
is.bvharirf <- function(x) {
inherits(x, "bvharirf")
}

#' @rdname set_bvar
#' @param x Any object
#' @export
is.bvharspec <- function(x) {
inherits(x, "bvharspec")
}

#' @rdname set_lambda
#' @param x Any object
#' @export
is.bvharpriorspec <- function(x) {
inherits(x, "bvharpriorspec")
}

#' @rdname choose_bvar
#' @param x Any object
#' @export
is.bvharemp <- function(x) {
inherits(x, "bvharemp")
}

#' @rdname bound_bvhar
#' @param x Any object
#' @export
is.boundbvharemp <- function(x) {
inherits(x, "boundbvharemp")
}

#' @rdname set_intercept
#' @param x Any object
#' @export
is.interceptspec <- function(x) {
inherits(x, "interceptspec")
}

#' @rdname set_ssvs
#' @param x Any object
#' @export
is.ssvsinput <- function(x) {
inherits(x, "ssvsinput")
}

#' @rdname set_horseshoe
#' @param x Any object
#' @export
is.horseshoespec <- function(x) {
inherits(x, "horseshoespec")
}

#' @rdname set_ng
#' @param x Any object
#' @export
is.ngspec <- function(x) {
inherits(x, "ngspec")
}

#' @rdname set_dl
#' @param x Any object
#' @export
is.dlspec <- function(x) {
inherits(x, "dlspec")
}

#' @rdname set_gdp
#' @param x Any object
#' @export
is.gdpspec <- function(x) {
inherits(x, "gdpspec")
}

#' @rdname set_ldlt
#' @param x Any object
#' @export
is.covspec <- function(x) {
inherits(x, "covspec")
}

#' @rdname set_ldlt
#' @param x Any object
#' @export
is.svspec <- function(x) {
inherits(x, "svspec")
}

#' @rdname set_ldlt
#' @param x Any object
#' @export
is.ldltspec <- function(x) {
inherits(x, "ldltspec")
Expand Down
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ reference:
- set_horseshoe
- set_ng
- set_dl
- set_gdp
- set_ldlt
- set_sv
- set_intercept
Expand Down
2 changes: 1 addition & 1 deletion man/bound_bvhar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/bvar_flat.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/bvar_minnesota.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/bvhar_minnesota.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/choose_bvar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/forecast_roll.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/irf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/predict.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_bvar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_dl.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions man/set_gdp.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_horseshoe.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_intercept.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_lambda.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_ldlt.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_ng.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/set_ssvs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/var_lm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/vhar_lm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a9c6f5a

Please sign in to comment.