Generating linear regression models
Most of the linear regression modelling follows a general pattern--there will be many independent variables that will collectively produce a result, which is a dependent variable. For instance, we can generate a regression model to predict the price of a house based on different attributes/features of a house (mostly numeric, real values) such as its size in square feet, number of bedrooms, number of washrooms, importance of its location, and so on.
In this recipe, we will use Weka's linear regression classifier to generate a regression model.
How to do it...
In this recipe, the linear regression model we will be creating is based on the
cpu.arff
dataset, which can be found in thedata
directory of the Weka installation directory.Our code will have two instance variables: the first variable will contain the data instances of theÂ
cpu.arff
file, and the second variable will be our linear regression classifier:Instances cpu = null; LinearRegression...