本文简要介绍
pyspark.sql.types.StructType
的用法。用法:
class pyspark.sql.types.StructType(fields=None)
结构类型,由
StructField
列表组成。这是表示
Row
的数据类型。迭代
StructType
将迭代其StructField
。包含的StructField
可以通过其名称或位置进行访问。例子:
>>> struct1 = StructType([StructField("f1", StringType(), True)]) >>> struct1["f1"] StructField(f1,StringType,true) >>> struct1[0] StructField(f1,StringType,true)
>>> struct1 = StructType([StructField("f1", StringType(), True)]) >>> struct2 = StructType([StructField("f1", StringType(), True)]) >>> struct1 == struct2 True >>> struct1 = StructType([StructField("f1", StringType(), True)]) >>> struct2 = StructType([StructField("f1", StringType(), True), ... StructField("f2", IntegerType(), False)]) >>> struct1 == struct2 False
相关用法
- Python pyspark StructType.fieldNames用法及代码示例
- Python pyspark StructType.add用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。