R/cardinality.R

Defines functions colCardinalities

Documented in colCardinalities

#  Copyright 2013, 2014, 2018, 2023 Christian Sigg
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  A copy of the GNU General Public License is available at
#  http://www.r-project.org/Licenses/

#' Cardinality of Column Vectors
#'
#' Computes the cardinality (the number of non-zero elements) of each column of
#' the matrix \eqn{\mathbf{w}}{w}.
#'
#' @export
#'
#' @param w a numeric matrix, e.g. \code{xcoef} as returned by \code{\link{nscancor}}
#'
#' @returns A vector containing the number of non-zero elements of each column of \code{w}
#'
#' @examples
#' # returns c(2, 1)
#' colCardinalities(matrix(c(1, 0, 2, -1, 0, 0), ncol = 2))
#'
#'
colCardinalities <- function(w) {
  return(colSums(abs(as.matrix(w)) > 0))
}

Try the nscancor package in your browser

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

nscancor documentation built on March 31, 2023, 11:56 p.m.