ここではUDFは必要ありません。Column
すでにインスタンスを持つcast
メソッドを提供しています:DataType
from pyspark.sql.types import DoubleType
changedTypedf = joindf.withColumn("label", joindf["show"].cast(DoubleType()))
または短い文字列:
changedTypedf = joindf.withColumn("label", joindf["show"].cast("double"))
ここで、正規の文字列名(他のバリエーションもサポートできます)はsimpleString
値に対応します。したがって、アトミックタイプの場合:
from pyspark.sql import types
for t in ['BinaryType', 'BooleanType', 'ByteType', 'DateType',
'DecimalType', 'DoubleType', 'FloatType', 'IntegerType',
'LongType', 'ShortType', 'StringType', 'TimestampType']:
print(f"{t}: {getattr(types, t)().simpleString()}")
BinaryType: binary
BooleanType: boolean
ByteType: tinyint
DateType: date
DecimalType: decimal(10,0)
DoubleType: double
FloatType: float
IntegerType: int
LongType: bigint
ShortType: smallint
StringType: string
TimestampType: timestamp
そして例えば複合型
types.ArrayType(types.IntegerType()).simpleString()
'array<int>'
types.MapType(types.StringType(), types.IntegerType()).simpleString()
'map<string,int>'
col
関数の使用も機能します。from pyspark.sql.functions import col
、changedTypedf = joindf.withColumn("label", col("show").cast(DoubleType()))