python – AssertionError:col应该是Column

前端之家收集整理的这篇文章主要介绍了python – AssertionError:col应该是Column前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在PySpark中创建一个新列并使用今天的日期填充此列?

这是我试过的:

import datetime
now = datetime.datetime.now()
df = df.withColumn("date",str(now)[:10])

我收到此错误

AssertionError: col should be Column

解决方法

How to create a new column in PySpark and fill this column with the date of today?

已有功能

from pyspark.sql.functions import current_date

df.withColumn("date",current_date().cast("string"))

AssertionError: col should be Column

使用文字

from pyspark.sql.functions import lit

df.withColumn("date",lit(str(now)[:10]))
原文链接:https://www.f2er.com/python/186028.html

猜你在找的Python相关文章