Skip to content

Change a value in a matrix randomly

3 messages · Barroso, Judit, Peter Alspach, Steve Taylor

#
Tena koe Judit

If it is really a matrix (and not a data.frame) and you wish to change a randomly selected zero to a one, then

judit <- matrix(0, nrow=3, ncol=4)
judit[sample(1:length(judit), 1)] <- 1

will do.  This uses the fact that a matrix is a vector with a dim attribute.

HTH ....

Peter Alspach
The contents of this e-mail are confidential and may be subject to legal privilege.
 If you are not the intended recipient you must not use, disseminate, distribute or
 reproduce all or any part of this e-mail or attachments.  If you have received this
 e-mail in error, please notify the sender and delete all material pertaining to this
 e-mail.  Any opinion or views expressed in this e-mail are those of the individual
 sender and may not represent those of The New Zealand Institute for Plant and
 Food Research Limited.