partition {Hmisc} | R Documentation |
Patitions an object into different sets
Description
Partitions an object into subsets of length defined in the sep
argument.
Usage
partition.vector(x, sep, ...)
partition.matrix(x, rowsep, colsep, ...)
Arguments
x |
object to be partitioned. |
sep |
determines how many elements should go into each set. The
sum of |
rowsep |
determins how many rows should go into each set. The
sum of |
colsep |
determins how many columns should go into each set. The
sum of |
... |
arguments used in other methods of |
Value
A list of equal length as sep
containing the partitioned objects.
Author(s)
Charles Dupont
See Also
Examples
a <- 1:7
partition.vector(a, sep=c(1,3,2,1))
[Package Hmisc version 5.1-3 Index]