When working on data science or research teams, it often helps to have a workflow that makes it easy for teammates to review your work and add additional components to the data cleaning or model structure. Additionally, it ensures that the steps in the process are clear so that debugging is easy.
In R, the {tidymodels} package offers one such workflow and in python, folks seem to prefer scikit learn. This week, I’m going to walk through a full workflow in tidymodels using the K-nearest neighbor algorithm. Some of the things I’ll cover include:
- Splitting the data in test/train sets and cross validation folds
- Setting up the model structure (what tidymodels refers to as a recipe)
- Creating preprocessing steps
- Compiling the preprocessing and model structure together into a single workflow
- Tuning the KNN model
- Identifying the best tuned model
- Evaluating the model on the test set
- Saving the entire worflow and model to be used later on with new data
- Making predictions with the saved workflow and model on new data
I’ve provided a number of tidymodels tutorials on this blog so feel free to search the blog for those. Additionally, all of my tidymodels tutorials and templates are available in a GitHub Repo. Alternatively, if Python is more you jam, I did do a previous blog comparing the workflow in tidymodels to Scikit Learn, which can be found HERE.
This entire tutorial and data are available on my GitHub page if you’d like to code along.
Load & Clean Data
For this tutorial I’m going to use the 2021 FIFA Soccer Ratings, which are available on Kaggle. There are several years of ratings there, but we will concentrate on 2021 with the goal being to estimate a player’s contract value based on the various FIFA ratings provided and the position they play.
First, I load the tidyverse and tidymodels libraries and read in the data. I’m going to drop goalies so that we only focus on players who play the field and, since the data has a large number of columns, I’m going to get only the columns we care about: Information about the player (playerID, name, height, weight, club, league, position, and contract value) and then the various FIFA ratings.
The only column with missing data that impacts our analysis is the team position column, as this is a feature in the data set. Additionally, there are 207 players with a contract value of 0 (all 195 players missing a team position have a 0 contract value). So, perhaps these are players who weren’t on a club at the time the ratings were assigned.
I’m going to remove these players from our analysis data set, but I’m going to place them in their own data set because we will use them later to make estimates of their contract value.
Visualizing the Data
Let’s take a look at a visual of the contract value for all of the players in our data set. Since this is severely right skewed, we will plot it on the log scale.
We also notice there are a variety of positions (way more than I would have guessed in soccer!).
Finally, we want to explore how playing position might influence contract value.
tidymodels set up
Now that we have our data organized we want to set up a tidymodels workflow to estimate the contract value of every player using a K-nearest neighbor model.
First, we split the data in train and test splits and then further split the training data into 5 cross validation folds so that we can tune the model to find the best number of K-neighbors.
Next, we specify that we want to use a KNN model and the outcome variable as regression, since it is continuous (as opposed to classification).
Now that the model is specified we need to set up our preprocessing steps. This is one thing that tidymodels is super useful for. Normally, we’d need to do all this preprocessing before fitting the model and, as in the case of KNN and most machine learning models, we’d need to standardize the variables in the training set and then store the means and standard deviations of those variables so that we can use them to standardize the test set or future data. In tidymodels, we set up our preprocessing workflow and store it and it contains all that information for us! We can simply load it and use it for any downstream analysis we want to do. There are three preprocessing steps we want to add to our workflow:
- log transform the dependent variable (contract value)
- Dummy code the positions
- Standardize (z-score) all off the numeric variable in the model (the ratings)
We can view the preprocessing steps using the prep() function.
With the model specified and the preprocessing recipe set up we are ready to compile everything into a single workflow.
We can look at the workflow to make sure everything makes sense before we start fitting the model.
Next, we tune the model using the cross validated folds that we set up on our training data set. We are trying to find the optimal number of k-neighbors that minimizes the RMSE of the outcome variable (the log of contract value).
We see the results are stored in a list for every one of our 5 cross validation splits. We can view the model metrics for each of the folds.
The model with 10 neighbors appears to have the lowest RMSE. So, we want to pull that value directly from this table so that we can store it and use it later when we go to fit the final model.
Fitting the Final Model Version 1: Using finalize_workflow()
Version 1 that I’ll show for fitting the final model uses the finalize_workflow() function. I like this approach if I’m building my model in a local session and then want to see how well it performs on the test session (which is what this function does). This isn’t the approach I take when I need to save everything for downstream use (which we will cover in Version 2).
First, fit the best model using the finalize_workflow() function.
Then, we get the model predictions for this final workflow on the the test data set.
We can plot the predicted contract value compared to the actual contract value and calculate the test set RMSE.
Fitting the Final Model Version 2: Re-sepcify the model on the training set, save it, and use it later
In this second version of fitting the final model, we will take the best neighbors from the tuning phase, re-specify the model to the training set, reset the workflow, and then save these components so that we can use them later.
First, re-specify the model and notice I set the neighbors argument to best_neighbors, which we saved above when we tuned the model.
We then use this finalized/re-specified model to reset the workflow. Notice it is added to the add_model() function however the recipe, with our preprocessing steps, does not change.
With the workflow set up we now need to do the final two sets:
- Fit the model to the entire data set and extract the recipe using extract_recipe() since we will need to save this to preprocess any new data before making predictions.
- Fit the model to the final data and extract the model itself, using extract_fit_parsnip() so we can use the model to make future predictions.
Now we save the recipe and model as .rda files. We can then load these two structures and use them on new data!
We have 207 players with 0 contract value, of which 195 had no team position. So, that leaves us with 12 players that we can estimate contract value for with our saved model.
First, we use the bake() function to apply the saved recipe to the new data so that we can preprocess everything appropriately.
With the new data preprocessed we can now predict the log of contract value with our saved model.
We can add these predictions back to the new data set, exponentiate the predicted contract value to get it back to the normal scale and then create a visual of our estimates for the 12 players.
Wrapping Up
That’s a quick walk through on how to set up a complete tdymodels workflow. This approach would work for any type of model you want to build, not just KNN! As always, the code and data are available on my GitHub page.