R/GBT.pushthebutton.R

Defines functions GBT.pushthebutton

Documented in GBT.pushthebutton

GBT.pushthebutton <-
function(	Y,
					X,
					par.range,
					num.iterations,
					num.repeats){
	temp.tune 	<- data.frame()
	for( i in 1:num.iterations){
		temp 		<- GBT.try.params.uniform.step1(	Y=Y,
									X=X,
									par.range=par.range,
									num.repeats=num.repeats )
		temp.tune 	<- rbind(temp.tune,temp)
		}
temp.tune <- temp.tune[order(-temp.tune$auc),]		
return(temp.tune)
}
Mahalanobis/PushTheButton documentation built on May 7, 2019, 2:09 p.m.