You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by am...@apache.org on 2022/05/16 10:14:39 UTC

[arrow-cookbook] branch main updated: [R] Swap code solutions for read / write CSV (#192)

This is an automated email from the ASF dual-hosted git repository.

amolina pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git


The following commit(s) were added to refs/heads/main by this push:
     new 8f5accc  [R] Swap code solutions for read / write CSV  (#192)
8f5accc is described below

commit 8f5accca7d5f8638a3c63bcb279679798af4d10c
Author: John MacKintosh <jo...@users.noreply.github.com>
AuthorDate: Mon May 16 11:14:34 2022 +0100

    [R] Swap code solutions for read / write CSV  (#192)
    
    * Update reading_and_writing_data.Rmd
    
    Swap code solutions for read_csv_arrow and write_csv_arrow as the solutions are provided in the wrong order at present
---
 r/content/reading_and_writing_data.Rmd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/r/content/reading_and_writing_data.Rmd b/r/content/reading_and_writing_data.Rmd
index 6e57a26..068e952 100644
--- a/r/content/reading_and_writing_data.Rmd
+++ b/r/content/reading_and_writing_data.Rmd
@@ -239,7 +239,7 @@ test_that("read_ipc_stream chunk works as expected", {
 unlink("my_table.arrows")
 ```
 
-## Read CSV files 
+## Write CSV files  
 
 You want to write Arrow data to a CSV file.
 
@@ -254,7 +254,7 @@ test_that("write_csv_arrow chunk works as expected", {
 })
 ```
 
-## Write CSV files 
+## Read CSV files
 
 You want to read a CSV file.