[
https://issues.apache.org/jira/browse/ARROW-3615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17660638#comment-17660638
]
Rok Mihevc commented on ARROW-3615:
-----------------------------------
This issue has been migrated to [issue
#19925|https://github.com/apache/arrow/issues/19925] on GitHub. Please see the
[migration documentation|https://github.com/apache/arrow/issues/14542] for
further details.
> [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)