Skip to content

Commit

Permalink
Update display in "Get the Schema of an Arrow RecordBatch" section
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Nov 21, 2023
1 parent 87a1eea commit 95a3087
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions matlab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 95a3087

Please sign in to comment.