powered by
Tree based power curve estimate
BayesTreePCFit(trainX, trainY, testX, nTree = 50)
a vector or numeric predictions on user provided test data
a matrix or dataframe to be used in modelling
a numeric or vector as a target
a matrix or dataframe, to be used in computing the predictions
a numeric value specifying number of trees to be constructed in model
data = data1 trainX = as.matrix(data[c(1:100),2]) trainY = data[c(1:100),7] testX = as.matrix(data[c(100:110),2]) Bart_prediction = BayesTreePCFit(trainX, trainY, testX)
Run the code above in your browser using DataLab