Will Jones created ARROW-17047:
----------------------------------
Summary: [Python][Docs] Document how to get field from StructType
Key: ARROW-17047
URL: https://issues.apache.org/jira/browse/ARROW-17047
Project: Apache Arrow
Issue Type: Improvement
Components: Documentation
Affects Versions: 8.0.0
Reporter: Will Jones
It's not at all obvious how to get a particular field from a StructType from
it's API page:
https://arrow.apache.org/docs/python/generated/pyarrow.StructType.html#pyarrow.StructType
We should add an example:
{code:python}
struct_type = pa.struct({"x": pa.int32(), "y": pa.string()})
struct_type[0]
# pyarrow.Field<x: int32>
pa.schema(list(struct_type))
# x: int32
# y: string
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)