Skip to content
Snippets Groups Projects
Commit 9db93ca0 authored by SANTAGOSTINI Pierre's avatar SANTAGOSTINI Pierre
Browse files

Function name changed

parent 2b3ec7fe
No related branches found
No related tags found
No related merge requests found
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plotmvggd.R
\name{plotmvggd}
\alias{plotmvggd}
\name{plotmggd}
\alias{plotmggd}
\title{Plot of the Bivariate Generalised Gaussian Density}
\usage{
plotmvggd(mu, Sigma, beta, xlim = c(mu[1] + c(-10, 10)*Sigma[1, 1]),
plotmggd(mu, Sigma, beta, xlim = c(mu[1] + c(-10, 10)*Sigma[1, 1]),
ylim = c(mu[2] + c(-10, 10)*Sigma[2, 2]), n = 101,
xvals = NULL, yvals = NULL, xlab = "x", ylab = "y",
zlab = "f(x,y)", col = "gray", tol = 1e-6, ...)
......@@ -26,7 +26,7 @@ plotmvggd(mu, Sigma, beta, xlim = c(mu[1] + c(-10, 10)*Sigma[1, 1]),
\item{col}{The color to use for the plot. See \code{\link{plot3d.function}}.}
\item{tol}{tolerance (relative to largest variance) for numerical lack of positive-definiteness in Sigma, for the estimation of the density. see \code{\link{mvdggd}}.}
\item{tol}{tolerance (relative to largest variance) for numerical lack of positive-definiteness in Sigma, for the estimation of the density. see \code{\link{dmggd}}.}
\item{...}{Additional arguments to pass to \code{\link{plot3d.function}}.}
}
......@@ -41,7 +41,7 @@ with mean vector \code{mu}, dispersion matrix \code{Sigma} and shape parameter \
mu <- c(1, 4)
Sigma <- matrix(c(0.8, 0.2, 0.2, 0.2), nrow = 2)
beta <- 0.74
plotmvggd(mu, Sigma, beta)
plotmggd(mu, Sigma, beta)
}
\references{
......@@ -50,9 +50,9 @@ Commun. Statist. 1998, Theory Methods, col. 27, no. 23, p 589-600.
\doi{10.1080/03610929808832115}
}
\seealso{
\code{\link{contourmvggd}}: contour plot of a bivariate generalised Gaussian density.
\code{\link{contourmggd}}: contour plot of a bivariate generalised Gaussian density.
\code{\link{mvdggd}}: Probability density of a multivariate generalised Gaussian distribution.
\code{\link{dmggd}}: Probability density of a multivariate generalised Gaussian distribution.
}
\author{
Pierre Santagostini, Nizar Bouhlel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment