Description Usage Arguments Details Value Examples
Given a vine describing the joint distribution of some uniform data, this function sequentially evaluates conditional distributions given previous variables in a specified order. See details.
1 | pcondseq(dat, ord, rv)
|
dat |
Data matrix with uniform scores. |
ord |
order of variables |
rv |
A regular vine, supposedly describing the joint
distribution of |
Suppose Ui denotes random variable i.
If you specify ord=c(5, 2, 3, 1), you'll get the cdfs of
U5; U2|U5; U3|(U2,U5); and U1|(U3,U2,U5),
evaluated at the data.
In general, this function computes:
U[ord[1]]
U[ord[2]]|U[ord[1]]
U[ord[3]]|U[ord[1:2]]
...
Matrix with rows being observations in dat, and columns being
U[ord[1]]; U[ord[2]]|U[ord[1]];
U[ord[3]]|U[ord[1:2]]; etc.
1 2 3 4 5 6 7 8 9 10 11 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.