Raw Message
Message-ID: <439EDB45.7070402@ufba.br>
Date: 2005-12-13T14:31:33Z
From: Carlos Mauricio Cardeal Mendes
Subject: sample matrix as a new object
Please, I??d like to store this sample matrix as a new object. How can I
do this ?
pulse <- c(67, 67, 68, 68, 68, 69, 69, 69, 69, 69, 70, 70, 70, 70, 71,
71, 72, 72, 73, 74)
m <- NULL
x <- 0
for (i in 1:5)
{
x <- sample(pulse,3)
m <- mean(x)
cat(x,m,"\n")
}
Thanks,
Mauricio