Elijah ben Izzy

Results 285 comments of Elijah ben Izzy

We are moving repositories! Please see the new version of this issue at https://github.com/DAGWorks-Inc/hamilton/issues/22. Also, please give us a star/update any of your internal links.

We are moving repositories! Please see the new version of this issue at https://github.com/DAGWorks-Inc/hamilton/issues/10. Also, please give us a star/update any of your internal links.

OK, I have this as well. Really glad to see that others are hitting this too and I'm not crazy 😆 Posting this here for googleability -- do let me...

We are moving repositories! Please see the new version of this issue at https://github.com/DAGWorks-Inc/hamilton/issues/42. Also, please give us a star/update any of your internal links. Note that everything else (slack...

This is very odl and has been merged/implemented in its final form: https://github.com/stitchfix/hamilton/pull/317

We are moving repositories! Please see the new version of this issue at https://github.com/DAGWorks-Inc/hamilton/issues/43. Also, please give us a star/update any of your internal links. Note that everything else (slack...

Awesome @ropeladder -- sorry for the delay in response. I'll take some time in tne next week to implement a prototype then we can give it a spin/connect about it!

Alright, proved out that I could do this with *only* using `extract_columns` + `parameterized`. Before we get this out I need to: 1. Mull over the API 2. Fix all...

Alright, so with the following example (rewrote slightly): ```python df = pd.DataFrame( [ ["outseries1a", "outseries2a", "inseries1a", "inseries2a", 5.0], ["outseries1b", "outseries2b", "inseries1b", "inseries2b", 0.2], # ... ], # Have to switch...

And an update -- I've implemented something similar to the above, still figuring out an edge case or two: ```python @parameterize_extract( ParameterizedExtract(('outseries1a', 'outseries2a'), {'input1': source('inseries1a'), 'input2': source('inseries1b'), 'input3': value(1.6)}), ParameterizedExtract(('outseries1b',...