Displaying 1 result from an estimated 1 matches for "mi_id_dat1".
2009 Oct 10
1
Resultados distintos
...dat1$fi) & !is.na(dat1$x) & !is.na(dat1$y)),]
dim(dat1)#401rows - 33cols
dat1<-dat1[,-c(16:33)]#ELIMINO LAS COLUMNAS QUE NO ME INTERESAN
dim(dat1)#401rows - 15cols
system.time({for (i in 1:dim(dat1)[1]){
for (j in 1:dim(Totdat)[1]){
if (dat1$MI_id_dat1[i]==Totdat$MI_id[j]){
Totdat$ti[j]<-dat1$ti[i]
Totdat$fi[j]<-dat1$fi[i]
Totdat$x[j]<-dat1$x[i]
Totdat$y[j]<-dat1$y[i]
break
}...