Skip to content

Commit

Permalink
Fix dist_multivariate_normal examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelloharawild committed Sep 16, 2024
1 parent 2238978 commit 2260f65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions R/dist_multivariate_normal.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
#' support(dist)
#' generate(dist, 10)
#'
#' density(dist, c(2, 1))
#' density(dist, c(2, 1), log = TRUE)
#' density(dist, cbind(2, 1))
#' density(dist, cbind(2, 1), log = TRUE)
#'
#' cdf(dist, 4)
#'
#' quantile(dist, 0.7)
#' quantile(dist, 0.7, type = "marginal")
#'
#' @export
dist_multivariate_normal <- function(mu = 0, sigma = diag(1)){
Expand Down
5 changes: 3 additions & 2 deletions man/dist_multivariate_normal.Rd

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

0 comments on commit 2260f65

Please sign in to comment.