From 95a30874fd436254469f299bba56bacc0274b377 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Tue, 21 Nov 2023 12:30:18 -0500 Subject: [PATCH] Update display in "Get the `Schema` of an Arrow `RecordBatch`" section --- matlab/README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/matlab/README.md b/matlab/README.md index 3711c5e8a1b8b..b4fbbe8db32f7 100644 --- a/matlab/README.md +++ b/matlab/README.md @@ -517,25 +517,25 @@ matlabTable = >> arrowRecordBatch = arrow.recordBatch(matlabTable) -arrowRecordBatch = - -Letter: [ - "A", - "B", - "C" - ] -Number: [ - 1, - 2, - 3 - ] +arrowRecordBatch = + + Arrow RecordBatch with 3 rows and 2 columns: + + Schema: + + Letter: String | Number: Float64 + + First Row: + + "A" | 1 >> arrowSchema = arrowRecordBatch.Schema -arrowSchema = +arrowSchema = -Letter: string -Number: double + Arrow Schema with 2 fields: + + Letter: String | Number: Float64 ``` ### Feather V1