[ https://issues.apache.org/jira/browse/ARROW-17485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
SHIMA Tatsuya updated ARROW-17485: ---------------------------------- Summary: [R] Allow TRUE/FALSE to the compression option of `write_feather`(`write_ipc_file`) (was: [R] Allow TRUE/FALSE to the compression option of `write_feather`) > [R] Allow TRUE/FALSE to the compression option of > `write_feather`(`write_ipc_file`) > ----------------------------------------------------------------------------------- > > 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 > Assignee: SHIMA Tatsuya > Priority: Major > Labels: pull-request-available > Time Spent: 10m > Remaining Estimate: 0h > > 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)