1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/example_log_lik_array.R
\name{example_loglik_array}
\alias{example_loglik_array}
\alias{example_loglik_matrix}
\title{Objects to use in examples and tests}
\usage{
example_loglik_array()
example_loglik_matrix()
}
\value{
\code{example_loglik_array()} returns a 500 (draws) x 2 (chains) x 32
(observations) pointwise log-likelihood array.
\code{example_loglik_matrix()} returns the same pointwise log-likelihood values
as \code{example_loglik_array()} but reshaped into a 1000 (draws*chains) x 32
(observations) matrix.
}
\description{
Example pointwise log-likelihood objects to use in demonstrations and tests.
See the \strong{Value} and \strong{Examples} sections below.
}
\examples{
LLarr <- example_loglik_array()
(dim_arr <- dim(LLarr))
LLmat <- example_loglik_matrix()
(dim_mat <- dim(LLmat))
all.equal(dim_mat[1], dim_arr[1] * dim_arr[2])
all.equal(dim_mat[2], dim_arr[3])
all.equal(LLarr[, 1, ], LLmat[1:500, ])
all.equal(LLarr[, 2, ], LLmat[501:1000, ])
}
|