From 6614cc72acd2a278bcb60edca1033902280862ee Mon Sep 17 00:00:00 2001 From: Jens Preussner Date: Tue, 7 Mar 2017 09:01:55 +0100 Subject: [PATCH] Added puc documentation. --- NAMESPACE | 1 + man/calcPUC.Rd | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 man/calcPUC.Rd diff --git a/NAMESPACE b/NAMESPACE index 95cfe0a..e53353f 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,6 +1,7 @@ # Generated by roxygen2: do not edit by hand export(bayesian_blocks) +export(calcPUC) export(discretize.bb) export(pid) export(specific_information) diff --git a/man/calcPUC.Rd b/man/calcPUC.Rd new file mode 100644 index 0000000..4ea50cd --- /dev/null +++ b/man/calcPUC.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/puc.R +\name{calcPUC} +\alias{calcPUC} +\title{Pairwise proportional unique contributions} +\usage{ +calcPUC(data) +} +\arguments{ +\item{data}{Discretized data matrix. Observations in rows, variables (features) in columns.} +} +\value{ +A matrix of dimension \code{ncol(data) x ncol(data)} with pairwise PUC scores. +} +\description{ +This function calculates pairwise proportional contributions between all column pairs. +}