January 2020
Beginner to intermediate
372 pages
10h
English
We can also aggregate transactional data using the Featuretools library. To do that, let's import the required libraries and load the dataset, just like we did in step 1 to step 4 of this recipe. To work with Featuretools, we need to transform the dataframe into an entity set. Let's get started:
es = ft.EntitySet(id="customer_data")
es.entity_from_dataframe(entity_id='transactions', ...
Read now
Unlock full access