NOTICE

The upcoming release of Featuretools 1.0.0 contains several breaking changes. Users are encouraged to test this version prior to release by installing from GitHub:

pip install https://github.com/alteryx/featuretools/archive/woodwork-integration.zip

For details on migrating to the new version, refer to Transitioning to Featuretools Version 1.0. Please report any issues in the Featuretools GitHub repo or by messaging in Alteryx Open Source Slack.


featuretools.entityset.EntitySet.find_forward_paths

EntitySet.find_forward_paths(start_dataframe_name, goal_dataframe_name)[source]

Generator which yields all forward paths between a start and goal dataframe. Does not include paths which contain cycles.

Parameters
  • start_dataframe_name (str) – name of dataframe to start the search from

  • goal_dataframe_name (str) – name of dataframe to find forward path to

See also

BaseEntitySet.find_backward_paths()