Sarah Yurick

Results 62 issues of Sarah Yurick

Previously, we would get a `ValueError: Not all divisions are known, can't align partitions. Please use set_index to set the index.` for something like: ``` from dask_sql import Context import...

Several of our pytests in `tests/integration/test_model.py` have this note: ``` # TODO - many ML tests fail on clusters without sklearn - can we avoid this? @skip_if_external_scheduler ``` We should...

bug
needs triage

- Extract microseconds/millennium/millisecond - Last_day - Timestampadd - Ceil - Floor

When I try: ``` from dask_sql import Context import pandas as pd import dask.dataframe as dd from datetime import datetime c = Context() date = datetime(2021, 10, 3, 15, 53,...

As part of our initiative to move away from Dask-ML, I've migrated some code from Dask-ML into Dask-SQL to support ParallelPostFit.

This is currently being tracked by #832 and #839 to replace the `ParallelPostFit` and `Incremental` classes, respectively. In addition to these, we should look into removing all Dask-ML references in...

enhancement
needs triage

Closes #839. In addition to #832, we want to create a custom implementation for Dask-ML's `Incremental` class as well. So as not to create any merge conflicts, I've only added...

**Is your feature request related to a problem? Please describe.** After #813 is resolved, we should also add support for the `TIMESTAMPDIFF` function, as described [here](https://www.w3resource.com/mysql/date-and-time-functions/mysql-timestampdiff-function.php). **Describe the solution you'd...

enhancement
needs triage

As part of our initiative to move away from Dask-ML, we should replace the `dask_ml.wrappers.Incremental` class with our own custom class. This implementation should be very similar to the `ParallelPostFit`...

enhancement
needs triage