简体   繁体   中英

PySpark How to parse and get field names from Dataframe schema's StructType Object

I have created Dataframe from Hive Table and want to retrieve the field/Column names.

>>>a=df.schema
>>>a
StructType(List(StructField(empid, IntegerType, true), StructField(empname,StringType, true)))

How can I retrieve Field names (empid, empname) from this object.

Use pyspark.sql.types.StructType.fieldnames :

fieldNames()

Returns all field names in a list.

 >>> struct = StructType([StructField("f1", StringType(), True)]) >>> struct.fieldNames() ['f1']

You can also use df.columns to get the column names as a list.

>>> spark.version
u'2.4.0.cloudera2'
>>>
>>> df=spark.sql("select 10 empid, 's' empname from range(1)")
>>> df.schema
StructType(List(StructField(empid,IntegerType,false),StructField(empname,StringType,false)))
>>> df.schema.fieldNames()
['empid', 'empname']
>>> df.columns
['empid', 'empname']
>>>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM