Displaying 2 results from an estimated 2 matches for "object4".
Did you mean:
objects
2006 Aug 05
1
formating for dist function
Hi there
I have a list that looks like this
object1 object1 78
object1 object2 45
object1 object3 34
object1 object4 45
object2 object2 89
object2 object3 32
object2 object4 13
but i want to create a matrix like this in order to use the dist function of R
object1 object2 object3 object4
object1 78 45 34 45
object2 45...
2002 Apr 12
1
Problems with memory
...and:
Rterm --min-vsize=10M --max-vsize=100M --min-nsize=500k --max-nsize=1M
I've been had problems when executing a loop like:
attach("data.Rdata")
for (i in 1:n)
{
object1<-fun1(data...)
object2<-fun2(...object1)
object3<-fun3(...object2)
object4[,i]<-fun4(...object3)
rm("object1","object2","object3")
}
After few interactions it stops with the message:
"Error: cannot allocate vector of size 7890 Kb
In addition: Warning message:
Reached total allocation of 127Mb: see help(memory.size)"
I t...