Displaying 1 result from an estimated 1 matches for "mi_id".
Did you mean:
mb_id
2009 Oct 10
1
Resultados distintos
...c"),by.y=c("t","v","num","m","c"),all.x=T,all.y=T)#dim(Totdat)=>5483 rows; 20 variables
### QUITO LAS FILAS DUPLICADAS ###
Totdat<-Totdat[!duplicated(Totdat),]
dim(Totdat)#4982 rows; 20 variables
#CREO UNA VARIABLE IDENTIFICADORA
Totdat$MI_id<-paste(1:dim(Totdat)[1],"mi_id",sep="_")
### ACTUALIZO Totdat CON NUEVOS DATOS:
dat1<-read.xls("C:\\Documents and Settings\\Obtenido del script\\dat1.xls",sheet=1)
dat1<-dat1[(!is.na(dat1$ti) & !is.na(dat1$fi) & !is.na(dat1$x) & !is.na(dat1$y)),]...