Daniel Possenriede

Results 62 issues of Daniel Possenriede

Boom (and by extension bsts and BoomSpikeSlab) `Depends` on MASS instead of importing it. Would you consider putting MASS in `Imports` instead of `Depends`? (And also the other packages in...

Somewhat related to \#52, queries with non-ASCII characters do not work (on Windows), unless they are encoded as UTF-8 ``` r library(RPostgreSQL) #> Loading required package: DBI cities city #>...

This PR adds a `rel` attribute to `links`. For example, `rel="me"` is used by Mastodon for [link verification](https://docs.joinmastodon.org/user/profile/#verification). I changed the Twitter links to Mastodon for illustration (it also shows...

# Checklist - [x] I understand and agree to the [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html). - [ ] I have listed any major changes in the [NEWS](https://github.com/rstudio/pointblank/blob/main/NEWS.md). - [ ] I have...

Would it be possible to sign the Windows msi and exe files for the next release, so that Windows will not warn the end user about an application from an...

help-wanted
windows
needs-funding

I’ve recently run into the `read_csv2()` with dot as decimal separator issue that’s been mentioned here [several](https://github.com/tidyverse/readr/issues/351) [times](https://github.com/tidyverse/readr/issues/1061) [before](https://github.com/tidyverse/readr/issues/714). Basically the problem is, that `read_csv2()` cannot handle csv files with...

feature
locale :earth_asia:

`read_csv2_chunked()` does not parse decimals correctly with the `default_locale()`. ``` r library(readr) tf head(2) #> [1] "mpg;cyl;disp;hp;drat;wt;qsec;vs;am;gear;carb" #> [2] "21,0;6;160;110;3,90;2,620;16,46;0;1;4;4" read_csv2(tf) #> β„Ή Using "','" as decimal and "'.'" as...

bug
read :book:
locale :earth_asia:

readr cannot parse dates with full month name (january) in Austrian. ``` r library(readr) ``` German date works fine ``` r parse_date("15. Januar 2015", "%d. %B %Y", locale = locale("de"))...

feature
datetime πŸ“†

Just a minor thing, but `read_csv()` et al.Β report the delimiter, which seems redundant. ``` r library(readr) x Rows: 1 Columns: 2 #> ── Column specification ──────────────────────────────────────────────────────── #> Delimiter: ","...

feature
read :book:

, i.e.Β allowing unnamed components in `Id()`, breaks `dbQuoteIdentifier()` (`dbQuoteIdentifier_PqConnection_Id` specifically), because the latter currently relies (and checks for) on component names. ``` r library(RPostgres) conn Error in dbQuoteIdentifier(conn, Id("mytable")):...