Displaying 1 result from an estimated 1 matches for "fpfm".
Did you mean:
fpf
2008 Apr 26
2
Calling a stored model within the predict() function
Hi all,
First of all, I'm a novice R user (less that a week), so perhaps my code
isn't very efficient.
Using the MBoost package I created a model using the following command and
saved it to a file for later use:
model <- gamboost(fpfm,data=SampleClusterData,baselearner="bbs") # Creating
a model
save(model,file="model.RData") # Saving a model
After this, during a new R session, I want to deploy this model:
setwd("Q:/Program Files/R/library/mboost/data")
NewData <- read.table("NewData.txt&...