search for: regplots

Displaying 1 result from an estimated 1 matches for "regplots".

2012 Aug 10
2
Function definition: where is the error in the "for" loop?
Dear all, The following function code fails with errors (see below): RegPlots <- function (data, ContrVar, RespVar){ intNmbrRows<-length(RespVar);intNmbrCols<-lenght(ContrVar) par(mfrow=c(intNmbrRows,intNmbrCols)) For(i in 1:intNmbrRows){ For (j in 1:intNmbrCols){ RegGraf(data,ContrVar[i],RespVar[j]) }...