View source: R/apollo_prepareProb.R
apollo_prepareProb | R Documentation |
Checks that the likelihood function for the mode is in the appropriate format to be returned.
apollo_prepareProb(P, apollo_inputs, functionality)
P |
List of vectors, matrices or 3-dim arrays. Likelihood of the model components. |
apollo_inputs |
List grouping most common inputs. Created by function apollo_validateInputs. |
functionality |
Character. Setting instructing Apollo what processing to apply to the likelihood function. This is in general controlled by the functions that call
|
This function should be called inside apollo_probabilities
, near the end of it, just before return(P)
.
This function only performs checks on the shape of P, but does not change its values.
Argument P
with (for most functionalities) the original contents. Output depends on argument functionality
.
"components"
: Returns P
without changes.
"conditionals"
: Returns only the "model"
component of argument P
.
"estimate"
: Returns only the "model"
component of argument P
.
"gradient"
: Returns only the "model"
component of argument P
.
"output"
: Returns argument P
without any changes to its content, but gives names to unnamed elements.
"prediction"
: Returns argument P
without any changes.
"preprocess"
: Returns argument P
without any changes to its content, but gives names to elements corresponding to componentNames.
"raw"
: Returns argument P
without any changes.
"report"
: Returns P
without changes.
"shares_LL"
: Returns argument P
without any changes to its content, but gives names to unnamed elements.
"validate"
: Returns argument P
without any changes.
"zero_LL"
: Returns argument P
without any changes to its content, but gives names to unnamed elements.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.