當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark hex用法及代碼示例


本文簡要介紹 pyspark.sql.functions.hex 的用法。

用法:

pyspark.sql.functions.hex(col)

計算給定列的十六進製值,可以是 pyspark.sql.types.StringType pyspark.sql.types.BinaryType pyspark.sql.types.IntegerType pyspark.sql.types.LongType

1.5.0 版中的新函數。

例子

>>> spark.createDataFrame([('ABC', 3)], ['a', 'b']).select(hex('a'), hex('b')).collect()
[Row(hex(a)='414243', hex(b)='3')]

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.sql.functions.hex。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。