Introducing the column transformer

The ColumnTransformer allows us to easily apply different transformations to different features. For example, now we can scale some numerical features, while leaving binary flags alone! This article walks through two examples using...

Long vs Wide Data

What does it mean for data to be in long form vs wide form, and when would you use each? In Pandas, how do you convert from one form to another?