Nothing
#' Covariance Vector of Y and X
#'
#' @author Ivan Jacob Agaloos Pesigan
#'
#' @param beta Numeric vector
#' \eqn{\boldsymbol{\beta}}.
#' Partial regression slopes.
#' @param sigmacapx Numeric matrix
#' \eqn{\boldsymbol{\Sigma}_{\mathbf{X}, \mathbf{X}}}.
#' Covariance matrix of
#' \eqn{X_{1}, \dots, X_{j}, \dots, X_{p}}.
#'
#' @family Moments Functions
#' @keywords strRegression moments internal
#' @noRd
.SigmaYX <- function(beta,
sigmacapx) {
return(
.Vec(
crossprod(
beta,
sigmacapx
)
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.