sgilmore10 opened a new issue, #38166:
URL: https://github.com/apache/arrow/issues/38166
### Describe the enhancement requested
Currently, the display for `arrow.tabular.RecordBatch` and
`arrow.tabular.Table` are not very MATLAB-like. Something like the following
would be better:
```matlab
>> t = table([1; 2; 3], ["A"; "B"; "C"], [false; true; false],
VariableNames=["A", "B", "C"]);
>> T = arrow.table(T)
T =
Arrow Table with Schema:
A: Float64 | B: String | C: Boolean
Sample data row:
1 | "A" | false
```
### Component(s)
MATLAB
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]