Last chance! 50% off unlimited learning
Sale ends in
Density for the bivariate Student-t distribution.
dbistudentt(x1, x2, df, rho = 0, log = FALSE)
dbistudentt
gives the density.
vector of quantiles.
vector of degrees of freedom and correlation parameter.
For df
, a value Inf
is currently not working.
Logical.
If log = TRUE
then the logarithm of the density is
returned.
One can think of this function as an extension of
dt
to two dimensions.
See bistudentt
for more information.
bistudentt
,
dt
.
if (FALSE) N <- 101; x <- seq(-4, 4, len = N); Rho <- 0.7
mydf <- 10; ox <- expand.grid(x, x)
zedd <- dbistudentt(ox[, 1], ox[, 2], df = mydf,
rho = Rho, log = TRUE)
contour(x, x, matrix(zedd, N, N), col = "blue", labcex = 1.5)
Run the code above in your browser using DataLab