R/accm.R

Defines functions accm

Documented in accm

accm <- function(Z,R) {
  # Absolute citizen congruence, using the mean
  z <- length(Z)
  (1/z) * sum(abs(Z - mean(R, na.rm=TRUE)))
  }

Try the polrep package in your browser

Any scripts or data that you put into this service are public.

polrep documentation built on Jan. 5, 2024, 3:01 a.m.