Skip to content
Prev 309435 / 398506 Next

Swap rows and columns in a matrix

HI David,

Seems like a closing bracket is needed.

mat[, sample(dim(mat)[2]) ]

?????????????????????????????????????? ^^^
A.K.




----- Original Message -----
From: David Winsemius <dwinsemius at comcast.net>
To: Haris Rhrlp <haris_r_help at yahoo.com>
Cc: "R-help at r-project.org" <R-help at r-project.org>
Sent: Tuesday, October 30, 2012 6:51 PM
Subject: Re: [R] Swap rows and columns in a matrix
On Oct 30, 2012, at 11:59 AM, Haris Rhrlp wrote:

            
This will "shuffle" columns, although 'randomly permute' is the more common word for this;operation:

set.seed(123)
mat[, sample(dim(mat)[2] ]

This will swap rows:

set.seed(123)
mat[ sample(dim(mat)[1],? ]