Re: [Python] Custom Metadata in PyArrow

2021-04-26 Thread Joris Van den Bossche
On Fri, 23 Apr 2021 at 14:50, Michael Lavina wrote: > Hello Team, > > The docs for Custom Metadata in PyArrow say TODO > https://arrow.apache.org/docs/python/data.html#custom-schema-and-field-metadata > So I am wondering if someone has any example of adding some custom > metadata to PyArrow. >

Re: [Python] Custom Metadata in PyArrow

2021-04-23 Thread Wes McKinney
On Fri, Apr 23, 2021 at 3:06 PM Weston Pace wrote: > > I have used the custom metadata feature in the past. I used it to > track (for example) which variables were independent variables and > which were dependent variables. This was used as input for later > tools to help present the data. > >

Re: [Python] Custom Metadata in PyArrow

2021-04-23 Thread Weston Pace
I have used the custom metadata feature in the past. I used it to track (for example) which variables were independent variables and which were dependent variables. This was used as input for later tools to help present the data. > Is that how most people handle metadata they create the schema

[Python] Custom Metadata in PyArrow

2021-04-23 Thread Michael Lavina
Hello Team, The docs for Custom Metadata in PyArrow say TODO https://arrow.apache.org/docs/python/data.html#custom-schema-and-field-metadata So I am wondering if someone has any example of adding some custom metadata to PyArrow. I tried looking through the pyarrow github repo and looking at