Learn R Programming

HilbertVis (version 1.30.0)

shrinkVector: shrink a vector by partitioning it into bins and taking the maxima in the bins

Description

Given a (potentially very long) vector, the vector is partitioned into a given number of (up to rounding errors) equally long bins, and a vector summerizing each of the bins with one number it returned.

Usage

shrinkVector(vec, newLength, mode = c("max", "min", "absmax", "mean"))

Arguments

vec
The vector to be shrunk. May be an ordinary numeric or integer vector or an IRanges::Rle vector.
newLength
The desired size of the return vector, i.e., the number of partitions
mode
the summerization mode: 'max': take the maximal value of each bin; 'min': take the minimal value of each bin; 'absmax': take the value with largest absolute value; 'mean': take the mean of the bin values.

Value

A vector of length newLength with the summary values of each of the bin of vector.

See Also

plotLongVector, Rsamtools::pileup, HilbertVisGui::simpleLinPlot

Examples

Run this code
   shrinkVector( 100000 + 1:1000, 17 )

Run the code above in your browser using DataLab