BaşlayınÜcretsiz başlayın

Training a recipe object

In the previous exercise, you created a recipe object with instructions to apply a log transformation to the avg_call_mins and avg_intl_mins predictor variables in the telecommunications data.

The next step in the feature engineering process is to train your recipe object using the training data. Then you will be able to apply your trained recipe to both the training and test datasets in order to prepare them for use in model fitting and model evaluation.

Your recipe object, telecom_log_rec, and the telecom_training and telecom_test datasets have been loaded into your session.

Bu egzersiz, kursun bir parçasıdır

Modeling with tidymodels in R

Kursa Göz Atın

Uygulamalı etkileşimli egzersiz

Bu egzersizi bu örnek kodu tamamlayarak deneyin.

# Train the telecom_log_rec object
telecom_log_rec_prep <- ___ %>% 
  ___(training = ___)

# View results
telecom_log_rec_prep
Kodu Düzenle ve Çalıştır