[
https://issues.apache.org/jira/browse/ARROW-3615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
ASF GitHub Bot updated ARROW-3615:
----------------------------------
Labels: pull-request-available (was: )
> [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
> Priority: Major
> Labels: pull-request-available
>
> 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
(v7.6.3#76005)