I was trying this exercise in GitHub: https://github.com/WillKoehrsen/automated-feature-engineering/blob/master/walk_through/Automated_Feature_Engineering.ipynb
but the code is too old to run on the newest version.
The first problem was entity_from_dataframe() function. It was deprecated, so I changed it into add_relationship() function.
After this, I encountered another problem on this code: r_client_previous = ft.Relationship(es['clients']['client_id'], es['loans']['client_id'])
The newest FeatureTools requires more parameters 'parent_column_name', 'child_dataframe_name', and 'child_column_name', but I don't know what should I enter in that parameters. Could you help me?
Also, is there another legacy code in that GitHub page that should be revised? Thanks.
line 43, in r_client_previous = ft.Relationship(es['clients']['client_id'], TypeError: init() missing 3 required positional arguments: 'parent_column_name', 'child_dataframe_name', and 'child_column_name'