BayesTreePriorOrthogonal {BayesTreePrior} | R Documentation |
Generate n_{iter}
trees from the prior distribution in the case where we have one variable with a finite number of observations (Case #3).
BayesTreePriorOrthogonal(alpha, beta, n_obs, n_iter = 500)
alpha |
base parameter of the tree prior, |
beta |
power parameter of the tree prior, |
n_obs |
number of unique observations, |
n_iter |
number of trees to generate, |
Returns a list containing, in the following order: the mean number of bottom nodes, the standard deviation of the number of bottom nodes, the mean of the depth, the standard deviation of the depth and a data.frame of vectors (b_i,d_i)
, where b_i
is the number of bottom nodes and d_i
is the depth of the i
th generated tree (i=1, \ldots ,n_{iter}
).
BayesTreePriorOrthogonalInf
, BayesTreePriorNotOrthogonal
results1 = BayesTreePriorOrthogonal(.95,.5, 100)
results2 = BayesTreePriorOrthogonal(.95,.5, 250)