12.8 Let’s try an example:

See if we can predict the home sale price in our ames dataset

  1. Start with a recipe
ames_recipe <- recipe(Sale_Price ~ Neighborhood + Gr_Liv_Area + Year_Remod_Add + Bldg_Type, 
                      data = ames_train)