Nothing
#' Deviation from the Mean (Matrix Input)
#'
#' @author Ivan Jacob Agaloos Pesigan
#'
#' @param x Numeric matrix.
#' Data matrix.
#' @param center Numeric vector.
#' Center.
#' @param n Positive integer.
#' Number of rows in the data matrix `x`.
#' @param k Positive integer.
#' Number of columns in the data matrix `x`.
#'
#' @return Returns a matrix.
#'
#' @family Scaling Functions
#' @keywords linearAlgebra scaling internal
#' @noRd
.DofMat <- function(x,
center,
n,
k) {
return(
x - rep(
x = center,
times = rep(
x = n,
times = k
)
)
)
}
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.