Simon P. Couch

Results 283 comments of Simon P. Couch

Similar SO question: https://stackoverflow.com/questions/74735676/db2-odbc-connection-doesnt-work-on-r-4-2 The [IBM website](https://www.ibm.com/docs/en/db2-warehouse?topic=science-r-development-environment) promotes a DB2-specific RODBC wrapper with source [here](https://github.com/cran/ibmdbR/blob/9f0b5822b6e5d73404b46e70163db2e2a82a14de/R/connect.R#L56). We may be able to pick up some tricks from their source, though they don't...

R 4.2.0 [made many changes to encodings for Windows](https://blog.r-project.org/2021/12/07/upcoming-changes-in-r-4.2-on-windows/), and from the looks of your issue you're on Windows as well. Possibly the culprit.

Closed in https://github.com/tidymodels/broom/commit/4ce9797907932697689032c4900b9e25246e7051. :)

Noting that there are some possibly related conversations at https://github.com/rstudio/bundle/issues/55 and linked issues, though this error seems more crate/rlang-related. Here's a reprex: ``` r library(tidymodels) library(bonsai) library(carrier) fit % fit(Class...

Something like this should do the trick! ``` r library(tidymodels) library(bonsai) library(carrier) fit % fit(two_class_dat) fit #> ══ Workflow [trained] ══════════════════════════════════════════════════════════ #> Preprocessor: Formula #> Model: boost_tree() #> #> ──...

Glad the answer was helpful! One tool that may be helpful for you as you put together your production environment; workflows (and other objects in the tidymodels) have `required_pkgs()` methods,...

It looks like `EnableQueryResultDownload` toggles "Cloud Fetch", which is some sort of query optimization technique for BI tools. I think I agree that it's probably not optimal for us to...

Thank you for the issue! I don't have access to your `my_data_sf` object. Are you able to reproduce this issue with a [reprex](https://github.com/tidyverse/reprex#what-is-a-reprex) (reproducible example), using publicly available or simulated...