uhkeller
uhkeller
No, just the ones in the script. This is before running it: ``` > sessionInfo() R version 4.2.1 (2022-06-23) Platform: aarch64-apple-darwin21.6.0 (64-bit) Running under: macOS Monterey 12.6 Matrix products: default...
The current release, 2022.07.2 Build 576.
That's strange. I have now tried this on a colleague's machine that uses a different OS (Windows 10), a different R version (4.2.0), and a different RStudio version (2022.07.1 Build...
Yes. Each call to `library()` restores the informative error, but running `rename(iris, x = Species)` in the console reverts to the "unused argument" error 100% of the time. Running the...
Thanks! Very happy to confirm that I don't manage to trigger the error any more with yesterday's daily build of RStudio.
Thank you for your quick response! The package was installed from source (precompiled binaries cannot be used with the homebrew-compiled version of R). I've now installed it from GitHub: ```...
``` ownloading GitHub repo r-dbi/RMariaDB@HEAD ✔ checking for file ‘/private/var/folders/t3/bqbwnz817290522m1phs7s5d8dfxgk/T/Rtmpfcw5MV/remotes1534e77bbd076/r-dbi-RMariaDB-4925d5f/DESCRIPTION’ ... ─ preparing ‘RMariaDB’: ✔ checking DESCRIPTION meta-information ... ─ cleaning src ─ running ‘cleanup’ ─ checking for LF line-endings...
``` ➜ ~ mariadb_config --libs -L/opt/homebrew/Cellar/mariadb-connector-c/3.3.2/lib/mariadb/ -lmariadb ➜ ~ mysql_config --libs zsh: command not found: mysql_config ➜ ~ brew unlink mariadb-connector-c Unlinking /opt/homebrew/Cellar/mariadb-connector-c/3.3.2... 5 symlinks removed. ➜ ~ brew link...
I managed to get RMariaDB working by installing mysql and mysql-connector-c++ in brew and then installing RMariaDB (from source). Maybe this helps others with the same problem while the issue...
Thanks for your reply! Autobrew sounds great, I wasn't aware of it. I'm a bit reluctant to use it though as I could not find any information on what it...