cluster-internal | R Documentation |
Internal cluster functions.
meanabsdev(y)
y |
numeric vector. |
These are not to be called by the user.
A more R-like version of meanabsdev()
would default to
na.rm=FALSE
, as e.g., mean()
or median()
:
meanabsdev <- function(y, na.rm=FALSE) mean(abs(y - mean(y, na.rm=na.rm)), na.rm=na.rm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.