[
https://issues.apache.org/jira/browse/ARROW-3716?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Wes McKinney reassigned ARROW-3716:
-----------------------------------
Assignee: Romain François
> [R] Missing cases for ChunkedArray conversion
> ---------------------------------------------
>
> Key: ARROW-3716
> URL: https://issues.apache.org/jira/browse/ARROW-3716
> Project: Apache Arrow
> Issue Type: Bug
> Components: R
> Reporter: Romain François
> Assignee: Romain François
> Priority: Major
> Labels: pull-request-available
> Fix For: 0.12.0
>
> Time Spent: 50m
> Remaining Estimate: 0h
>
> {code}
> library(arrow)
> tab <- table(iris)
> tab$schema()
> #> arrow::Schema
> #> Sepal.Length: double
> #> Sepal.Width: double
> #> Petal.Length: double
> #> Petal.Width: double
> #> Species: dictionary<values=string, indices=int8, ordered=0>
> as_tibble(tab)
> #> Error in Table__to_dataframe(x): cannot handle Array of type 26
> # simpler reprex:
> a <- chunked_array(factor(c("a", "b")))
> a$as_vector()
> #> Error in ChunkedArray__as_vector(self): cannot handle Array of type 26
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)