Question 227:
You are a machine learning specialist working for a farming corporation. Your team is working on a machine learning problem where you are trying to determine the price of a given square plot of corn. You have many features in your data set that you can use in your model, for example: length of the plot in meters, corn type, corn height, longitude and latitude of the plot, etc. You are trying to understand how you can use the length-of-plot (in meters) feature in your model. You have chosen to use a Linear Learner algorithm. When you fit the model to the length-of-plot feature you get results that are not optimal. As shown by the plot of length to price, you don’t get a linear relationship: How can you transform the length-of-plot feature to make it usable in your Linear Learner based model?
Answer options:
A.Transform the length-of-plot feature by converting the length from meters to feet B.Transform the length-of-plot feature by determining the Mutual Information (MI) score between the price and the length-of-plot feature C.Transform the length-of-plot feature by squaring the length-of-plot for each observation to create an area feature and add it to your data set D.Transform the length-of-plot feature by dividing the length-of-plot by the corn height for each observation to create a corn-height_to_length-of-plot ratio feature and add it to your data set