sgilmore10 opened a new issue, #37835:
URL: https://github.com/apache/arrow/issues/37835

   ### Describe the enhancement requested
   
   We should change how `arrow.tabular.Schema`s are displayed in the MATLAB 
interface. Below is the current display:
   
   ```matlab
   >> field1 =  arrow.field("A", arrow.time32());
   >> field2 = arrow.field("B", arrow.boolean());
   >>s = arrow.schema([field1 field2])
   
   s = 
   
   A: time32[s]
   B: bool
   ```
   
   The current display is not very MATLAB-like.  Something like the following 
would be better:
   
   ```matlab
   >> field1 =  arrow.field("A", arrow.time32());
   >> field2 = arrow.field("B", arrow.boolean());
   >> s = arrow.schema([field1 field2])
   
   s = 
   
     Arrow Schema with 2 fields:
   
           A              B     
       __________    ___________
   
       Time32Type    BooleanType
   ```
   
   
   ### 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]

Reply via email to