Romain François created ARROW-3716:
--------------------------------------
Summary: [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
{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)