romainfrancois opened a new pull request #11369: URL: https://github.com/apache/arrow/pull/11369
``` r library(arrow, warn.conflicts = FALSE) #> See arrow_info() for available features (c_str <- ChunkedArray$create(c("un", "deux"), c("trois", "quatre"))) #> ChunkedArray #> [ #> [ #> "un", #> "deux" #> ], #> [ #> "trois", #> "quatre" #> ] #> ] (v_str <- c_str$as_vector()) #> [1] "un" "deux" "trois" "quatre" .Internal(inspect(v_str)) #> @7ff3ff98f540 16 STRSXP g0c0 [REF(65535)] arrow::ChunkedArray<0x7ff3f64a2128, string, 2 chunks, 0 nulls> len=4 ``` <sup>Created on 2021-10-08 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1.9000)</sup> Only dealing with strings for now, int and double coming next. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org