当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pyspark StructField用法及代码示例


本文简要介绍 pyspark.sql.types.StructField 的用法。

用法:

class pyspark.sql.types.StructField(name, dataType, nullable=True, metadata=None)

StructType 中的一个字段。

参数

namestr

字段的名称。

dataTypeDataType

字段的 DataType

nullable布尔型,可选

该字段是否可以为空(无)。

metadata字典,可选

从字符串到简单类型的字典,可以自动转换为 JSON

例子

>>> (StructField("f1", StringType(), True)
...      == StructField("f1", StringType(), True))
True
>>> (StructField("f1", StringType(), True)
...      == StructField("f2", StringType(), True))
False

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.sql.types.StructField。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。