[
https://issues.apache.org/jira/browse/ARROW-17047?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anja Boskovic reassigned ARROW-17047:
-------------------------------------
Assignee: Anja Boskovic
> [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
> Assignee: Anja Boskovic
> Priority: Major
>
> 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)