Simon P. Couch
Simon P. Couch
Also seems worth checking for arguments that would be ignored, e.g. `database = ` in the issue linked above.
The fact that several folks came across #423 after its submission and a similar, well-voted-on [SO Post](https://stackoverflow.com/questions/62185369/how-to-write-an-r-data-frame-to-a-snowflake-database-table?noredirect=1&lq=1) that made the same mistake in its answer (I just submitted an edit)...
Thanks for the thorough issue description, @tomasnobrega. Could you try [installing Microsoft's SQL Server ODBC driver](https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16&tabs=alpine18-install%2Calpine17-install%2Cdebian8-install%2Credhat7-13-install%2Crhel7-offline) and let us know whether the issue persists with that driver? Especially given the...
Thanks for the issue, @c13c83. Can you please provide a minimal [reprex](https://github.com/tidyverse/reprex#what-is-a-reprex) (reproducible example), including the output of `dbGetInfo()` for your connection? A reprex will help me troubleshoot and fix...
Ah, thanks for the issue. Some notes-to-self as I think through this... `train_lightgbm()` currently supports passing any `lgb.train(param())` arguments through `...` and sorting them internally. My temptation here, as long...
Ah, thanks @jameslamb! You beat me to it! Will poke at those links.
Quickly making sure I'm interpreting "should also be set" correctly, free to ignore ``` r library(lightgbm) library(dplyr) #> #> Attaching package: 'dplyr' #> The following object is masked from 'package:lightgbm':...
> Sorry for the delay, have been traveling for the last week. No worries at all! Hope the time away brought you what you needed.☀️ > Apologize if this is...
Yup, absolutely. We _can_ match to the dials function just via `tunable()` methods, though. For `min_n`, [via the model registration](https://github.com/tidymodels/parsnip/blob/40ec24fbbb777a5f93aaab96e26bead4e0398a74/R/boost_tree_data.R#L45-L52) and `tunable.model_spec()`, and for recipes arguments like `step_poly(degree)`, [in the...
Good point on the `id` argument, and I think your proposal to a transition to `...` could be a good workaround. Agreed that something b)-ish might feel the most expressive—will...