5 Build Oracle Machine Learning for R Models
The OML4R package OREmodels
contains functions with which you can create advanced analytical data models using ore.frame
objects.
- About OREmodels Functions
TheOREmodels
package contains functions with which you can build machine learning models usingore.frame
objects. - About the longley Data Set for Examples
Most of the linear regression andore.neural
examples use the longley data set, which is provided by R. - Build Linear Regression Models
Theore.lm
andore.stepwise
functions perform least squares regression and stepwise least squares regression, respectively, on data represented in anore.frame
object. - Build a Generalized Linear Model
Theore.glm
functions fits generalized linear models on data in anore.frame
object.. - Build a Neural Network Model
Neural network models can be used to capture intricate nonlinear relationships between inputs and outputs or to find patterns in data. - Build a Random Forest Model
Theore.randomForest
function provides an ensemble learning technique for classification of data in anore.frame
object.