Nothing
############################################################################/**
# @RdocFunction signTabulate
# @alias signTabulate
#
# @title "Calculates the number of negative, zero, positive and missing values"
#
# @synopsis
#
# \description{
# @get "title" in a @numeric vector. For @double vectors, the number of
# negative and positive infinite values are also counted.
# }
#
# \arguments{
# \item{x}{a @numeric @vector.}
# \item{...}{Not used.}
# }
#
# \value{
# Returns a @named @numeric @vector.
# }
#
# \seealso{
# @see "base::sign".
# }
#
# @author "HB"
#
# @keyword "univar"
#*/############################################################################
signTabulate <- function(x, ...) {
res <- .Call("signTabulate", x, PACKAGE="matrixStats");
names(res) <- c("-1", "0", "+1", "NA", "-Inf", "+Inf")[1:length(res)];
res;
} # signTabulate()
############################################################################
# HISTORY:
# 2014-06-04 [HB]
# o Created.
############################################################################
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.