Description Usage Arguments Details Value See Also Examples
createInits
returns a list that contains randomly generated initial
values.
1 | createInits(xTrain, priors = createPriors(xTrain), chains = 4)
|
xTrain |
An |
priors |
A list that contains the parameter values for the priors. |
chains |
The number of Markov chains. The default is 4. |
This creates a list of length chains
that contains randomly generated
initial values. The intention is to specify initial values for the parameters
for the Markov chains. The user can change the values as they like prior to
inputting the list into bcgp
.
A list of length chains
The elements of this list will be named
lists, where each of these has the name of a parameter.
Other preprocessing functions: createPriors
1 2 3 | xTrain <- matrix(runif(40), ncol= 4, nrow = 10)
createInits(xTrain)
createInits(xTrain, priors = createPriors(xTrain, noise = TRUE), chains = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.