era127
era127
Would it be possible to add the sorted argument to expect_date, or was it omitted for a technical reason? Similar to expect_posixct() Thanks.
Timestamp datatypes are not supported in the appender api - they need to be formatted as string otherwise it will panic at the todo! in /src/vtab/arrow.rs line 331.
I am reading through the MLJ documentation and I don't see an example of how a learning network would implement a segmented or nested model, where an array of models...
The dplyr translation does not currently support the `floor_date()` function. Should it be mapped to the `TIMESTAMP_TRUNC` sql statement? The POSIXt objects are mapped to TIMESTAMP and not DATETIME so...
### What's up? I am starting to look at PRQL and I was wondering if there is the possibility to support ASOF joins such as in [duckdb](https://duckdb.org/docs/guides/sql_features/asof_join.html) I understand this...
Some of the links on the readme file do not work on GitHub, and the julialang.org website forwards users to this GitHub site under the Dates timezone documentation. For example:...
Hi, I was wondering if you could explain the iterations argument and the solver. Is the iterations, the number of times the dataset is sampled with an individual row, or...
The documentation column names do not match the code.
According to the C appender [api documentation](https://duckdb.org/docs/api/c/api#duckdb_appender_destroy), the drop of appender should only need to call `duckdb_appender_destroy`. I believe the flush and duckdb_appender_close call can be removed. ```rust impl Drop...
I got a deprecated warning when using this code in `/src/types/jl` ```Julia pipe = Standardizer |> TransformedTargetModel(model, target=Standardizer) ┌ Warning: `TransformedTargetModel(target=...)` is deprecated in favor of `TransformedTargetModel(transformer=...)`. │ caller =...