[
https://issues.apache.org/jira/browse/ARROW-3615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Javier Luraschi updated ARROW-3615:
-----------------------------------
Docs Text: (was: tbl <- tibble::tibble(
int = c(1, NA, NaN, -1)
)
batch <- record_batch(tbl)
> as_tibble(batch)
# A tibble: 4 x 1
int
<dbl>
1 1
2 NA
3 NA
4 -1)
Description:
Repro:
{code:java}
tbl <- tibble::tibble(
int = c(1, NA, NaN, -1)
)
batch <- record_batch(tbl)
> as_tibble(batch)
# A tibble: 4 x 1
int
<dbl>
1 1
2 NA
3 NA
4 -1
{code}
Notice NaN is replaced with NA
> [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
>
> Repro:
> {code:java}
> tbl <- tibble::tibble(
> int = c(1, NA, NaN, -1)
> )
> batch <- record_batch(tbl)
> > as_tibble(batch)
> # 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)