Column-wise differences | R Documentation |
Column-wise differences.
coldiffs(x)
x |
A matrix with numbers. |
This function simply does this function x[, -1] - x[, -k], where k is the last column of the matrix x. But it does it a lot faster. That is, 2nd column - 1st column, 3rd column - 2nd column, and so on.
A matrix with one column less containing the differences between the successive columns.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
Dist, dista, colmeans
x <- matrix( rnorm(50 * 10), ncol = 10 )
res<-coldiffs(x)
x<-NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.