[R] Vectorizing a "for" loop
Eik Vettorazzi
vettorazzi at econ.uni-hamburg.de
Thu Aug 3 16:28:18 CEST 2006
res<-outer(rows,columns,FUN=function(x,y) abs(x-y))
will help you.
Am Thu, 03 Aug 2006 16:10:46 +0200 schrieb Daniel Gerlanc
<dgerlanc at gmail.com>:
> Hello all,
>
> Consider the following problem:
>
> There are two vectors:
>
> rows <- c(1, 2, 3, 4, 5)
> columns <- c(10, 11, 12, 13, 14)
>
> I want to create a matrix with dimensions length(rows) x length(columns):
>
> res <- matrix(nrow = length(rows), ncol = length(columns))
>
> If "i" and "j" are the row and column indexes respectively, the values
> of the cells are abs(rows[i] - columns[j]). The resultant matrix
> follows:
>
> [,1] [,2] [,3] [,4] [,5]
> [1,] 9 10 11 12 13
> [2,] 8 9 10 11 12
> [3,] 7 8 9 10 11
> [4,] 6 7 8 9 10
> [5,] 5 6 7 8 9
>
> This matrix may be generated by using a simple "for" loop:
>
> for(i in 1:length(rows)){
> for(j in 1:length(columns)){
> res[i,j] <- abs(rows[i] - columns[j])
> }
> }
>
> Is there a quicker, vector-based approach for doing this or a function
> included in the recommended packages that does this?
>
> Thanks!
>
> -- Dan Gerlanc
> Williams College
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
--
--------------------
Universität Hamburg
Institut für Statistik und Ökonometrie
Dipl.-Wi.-Math. Eik Vettorazzi
Von-Melle-Park 5
20146 Hamburg
Tel.: +49 40-42838-3540
More information about the R-help
mailing list