Displaying 1 result from an estimated 1 matches for "ivvalues".
Did you mean:
  ivalues
  
2013 Jan 17
0
help with error: DV "converted to a factor"
...IVcat[p]<-IV[p]
		}
		else{IVcat[p]<-""}
	}
	IVcat<-IVcat[!is.na(IVcat)]
#Create vectors (IVvalslist[n] for nth factor) for each IVcat containing
each possible value for that IV
	IVvalslist<-vector('list', length(IVcat))
	for(i in 1:length(IVcat)){
	
assign(paste("IVvalues",i,sep=""),unique(dataset[[toString(IVcat[i])]])[!is.na(unique(dataset[[toString(IVcat[i])]]))])
		IVvalslist[i]<-list(get(paste("IVvalues",i,sep="")))
		}
#Create a data frame (refM) with every combination of values for each IVcat
	refM<-expand.grid(IVvalsl...