[
https://issues.apache.org/jira/browse/ARROW-3615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Rok Mihevc updated ARROW-3615:
------------------------------
External issue URL: https://github.com/apache/arrow/issues/19925
> [R] Support for NaN
> -------------------
>
> Key: ARROW-3615
> URL: https://issues.apache.org/jira/browse/ARROW-3615
> Project: Apache Arrow
> Issue Type: Improvement
> Components: R
> Reporter: Javier Luraschi
> Assignee: Romain Francois
> Priority: Major
> Labels: pull-request-available
> Fix For: 0.12.0
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> Repro:
> {code:java}
> tbl <- tibble::tibble(
> int = c(1, NA, NaN, -1)
> )
> batch <- record_batch(tbl)
> as_tibble(batch)
> {code}
>
> {code:java}
> # A tibble: 4 x 1
> int <dbl>
> 1 1
> 2 NA
> 3 NA
> 4 -1
> {code}
> Notice NaN is replaced with NA
--
This message was sent by Atlassian Jira
(v8.20.10#820010)