You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "SHIMA Tatsuya (Jira)" <ji...@apache.org> on 2022/08/20 14:38:00 UTC

[jira] [Created] (ARROW-17485) [R] Allow FALSE to the compression option of `write_feather`

SHIMA Tatsuya created ARROW-17485:
-------------------------------------

             Summary: [R] Allow FALSE to the compression option of `write_feather`
                 Key: ARROW-17485
                 URL: https://issues.apache.org/jira/browse/ARROW-17485
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
    Affects Versions: 9.0.0
            Reporter: SHIMA Tatsuya


We may want to create an uncompressed IPC file to share with JavaScript.
https://quarto.org/docs/interactive/ojs/data-sources.html#file-attachments

Currently, to do this, we need to set up the following, but the string "uncompressed" is long and does not benefit from auto-completion by the IDE, making it difficult to write code.

{code:r}
arrow::write_feather(mtcars, "data.arrow", compression = "uncompressed")
{code}

It would be useful to write the following.

{code:r}
arrow::write_feather(mtcars, "data.arrow", compression = FALSE)
{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)