View source: R/Partial_Moments.R
| PM.matrix | R Documentation |
Builds a list containing CUPM, DUPM, DLPM, CLPM and the overall covariance matrix.
PM.matrix(LPM_degree, UPM_degree, target, variable, pop_adj, norm = FALSE)
LPM_degree |
numeric; lower partial moment degree (0 = freq, 1 = area). |
UPM_degree |
numeric; upper partial moment degree (0 = freq, 1 = area). |
target |
numeric vector; thresholds for each column (defaults to colMeans). |
variable |
numeric matrix or data.frame. |
pop_adj |
logical; TRUE adjusts population vs. sample moments. |
norm |
logical; default FALSE. If TRUE, each quadrant matrix is cell-wise normalized so their sum is 1 at each (i,j). |
Partial Moment Matrix
A list: $cupm, $dupm, $dlpm, $clpm, $cov.matrix.
set.seed(123)
A <- cbind(rnorm(100), rnorm(100), rnorm(100))
PM.matrix(1, 1, NULL, A, TRUE) # uses norm = FALSE by default
PM.matrix(1, 1, NULL, A, TRUE, TRUE) # enable normalization
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.