HamiltonRepoMigrationBot
HamiltonRepoMigrationBot
**Comment by [skrawcz](https://github.com/skrawcz)** _Thursday Jan 05, 2023 at 07:25 GMT_ ---- Thoughts to think about: - quokka, like spark, relies on a central object to be manipulated so that it...
**Comment by [skrawcz](https://github.com/skrawcz)** _Thursday Jan 05, 2023 at 07:46 GMT_ ---- Sketch of some code converting the hello world example ```python # Data Loading # Filtering is part of data...
**Comment by [skrawcz](https://github.com/skrawcz)** _Saturday Jan 07, 2023 at 20:02 GMT_ ---- Parking a thought -- what about just enabling hamilton type functions instead of with_column? Basically given a datastream, that's...
**Comment by [skrawcz](https://github.com/skrawcz)** _Tuesday Feb 21, 2023 at 06:40 GMT_ ---- Tweaking the above slightly: ```python def disc_price(l_extendedprice: pl.Series, l_discount: pl.Series) -> pl.Series: """Computes the discounted price""" return l_extendedprice *...
**Comment by [elijahbenizzy](https://github.com/elijahbenizzy)** _Saturday Jun 04, 2022 at 21:34 GMT_ ---- Interesting... Another approach is to use some version of pandas that traces the actions and delays it (I bet...
**Comment by [elijahbenizzy](https://github.com/elijahbenizzy)** _Saturday Oct 29, 2022 at 17:07 GMT_ ---- Started working on this -- got a rough POC working but its fairly complicated and wasn't worth my time....
**Comment by [elijahbenizzy](https://github.com/elijahbenizzy)** _Saturday Oct 29, 2022 at 17:31 GMT_ ---- Yeah I'd need to see more of a workflow/motivating example for this TBH. E.G. a graphadapter that chunks up...
**Comment by [skrawcz](https://github.com/skrawcz)** _Thursday Dec 15, 2022 at 07:01 GMT_ ---- Status on getting the hello world to run on snowpark: ``` create or replace function hamilton_hw() -- table does...
**Comment by [skrawcz](https://github.com/skrawcz)** _Thursday Dec 15, 2022 at 07:06 GMT_ ---- Putting the driver logic in a module also works: ``` create or replace function hamilton_hw() returns Object language python...
**Comment by [skrawcz](https://github.com/skrawcz)** _Thursday Dec 15, 2022 at 22:45 GMT_ ---- As a UDTF: ``` create or replace function hamilton_udtf_hw() returns Table ( index float, spend float, signups float, avg_3wk_spend...