-
Hi! I'm just getting started with Hamilton and the existing documentation is great for illustrating the actions performed on a single df. If in my data pipeline I wanted to initialize a df, perform some feature engineering on it, merge a separate df onto this (potentially using engineered features as join keys), and then continuing to engineer features on this newly joined df, what's the proper pattern here? Is there syntax in My gut instinct would be to
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@filpia so sorry for the very very slow response; let me fix my notification settings so it doesn't happen again. Good question, and there's a few approaches here; at a high level, with Hamilton you could model this process entirely through functions. The different approaches therefore are really just determining the boundaries of the DAG you're grouping/curating:
|
Beta Was this translation helpful? Give feedback.
@filpia so sorry for the very very slow response; let me fix my notification settings so it doesn't happen again.
Good question, and there's a few approaches here; at a high level, with Hamilton you could model this process entirely through functions. The different approaches therefore are really just determining the boundaries of the DAG you're grouping/curating: