You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hamilton is a declarative dataflow framework that came out of Stitch Fix. It was designed to help one manage a Pandas code base, specifically with respect to feature engineering for machine learning models.
608
+
609
+
It prescibes an opinionated paradigm, that ensures all code is:
610
+
611
+
* unit testable
612
+
* integration testing friendly
613
+
* documentation friendly
614
+
* transformation logic is reusable, as it is decoupled from the context of where it is used.
615
+
* integratable with runtime data quality checks.
616
+
617
+
This helps one to scale your pandas code base, at the same time, keeping maintenance costs low.
618
+
619
+
For more information, see `documentation <https://hamilton.readthedocs.io/>`__.
0 commit comments