Column and row-wise range of values of a matrix.
Column and row-wise range of values of a matrix.
colrange(x, cont = TRUE) rowrange(x, cont = TRUE)
x |
A numerical matrix with data. |
cont |
If the data are continuous, leave this TRUE and it will return the range of values for each variable (column). If the data are integers, categorical, or if you want to find out the number of unique numbers in each column set this to FALSE. |
A vector with the relevant values.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
x <- matrix( rnorm(100 * 100), ncol = 100 ) a1 <- colrange(x) a2 <- apply(x, 2, function(x) diff( range(x)) ) all.equal(a1, a2) a1 <- rowrange(x) a2 <- apply(x, 1, function(x) diff( range(x)) ) all.equal(a1, a2) x<-a1<-a2<-NULL
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.