Feature Engineering - Introduction to dplyr

Originally published at: https://tutorials.datasciencedojo.com/intro-to-dplyr-feature-engineering/

In this final tutorial of our Introduction to dplyr series, we will cover ways to do feature engineering both with dplyr (“mutate” and “transmute”) and base R (“ifelse”). You’ll learn how to impute missing values as well as create new values based on existing columns. In addition, we’ll go over four different ways to combine datasets. If you’ve followed all the videos in the series, you should be ready to get up and running with dplyr and use it to tackle a range of data manipulation tasks.

To get setup with dplyr, watch our first tutorial.

Be sure to also check our accompanying blog post here.

(292)