本文簡要介紹
pyspark.sql.types.StructType.fieldNames
的用法。用法:
fieldNames()
返回列表中的所有字段名稱。
例子:
>>> struct = StructType([StructField("f1", StringType(), True)]) >>> struct.fieldNames() ['f1']
相關用法
- Python pyspark StructType.add用法及代碼示例
- Python pyspark StructType用法及代碼示例
- Python pyspark StructField用法及代碼示例
- Python pyspark StreamingQueryManager.get用法及代碼示例
- Python pyspark StringIndexer用法及代碼示例
- Python pyspark StreamingQueryManager.resetTerminated用法及代碼示例
- Python pyspark StreamingKMeansModel用法及代碼示例
- Python pyspark StreamingQueryManager.active用法及代碼示例
- Python pyspark StreamingQuery.explain用法及代碼示例
- Python pyspark StopWordsRemover用法及代碼示例
- Python pyspark Statistics.corr用法及代碼示例
- Python pyspark StandardScaler用法及代碼示例
- Python pyspark Statistics.kolmogorovSmirnovTest用法及代碼示例
- Python pyspark Statistics.colStats用法及代碼示例
- Python pyspark Statistics.chiSqTest用法及代碼示例
- Python pyspark Series.asof用法及代碼示例
- Python pyspark Series.to_frame用法及代碼示例
- Python pyspark Series.rsub用法及代碼示例
- Python pyspark Series.mod用法及代碼示例
- Python pyspark Series.str.join用法及代碼示例
- Python pyspark Series.str.startswith用法及代碼示例
- Python pyspark Series.dt.is_quarter_end用法及代碼示例
- Python pyspark Series.dropna用法及代碼示例
- Python pyspark Series.sub用法及代碼示例
- Python pyspark Series.sum用法及代碼示例
注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.sql.types.StructType.fieldNames。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。