pyspark.sql.functions.from_unixtime¶
-
pyspark.sql.functions。
from_unixtime
( 時間戳:ColumnOrName,格式:str=“yyyy-MM-dd HH: mm: ss” )→pyspark.sql.column.Column¶ -
轉換由unix紀元以來的秒數(1970-01-01就是UTC)字符串代表那一刻在當前係統時間戳的時區在給定的格式。
例子
> > >火花。相依。集(“spark.sql.session.timeZone”,“美國/ Los_Angeles”)> > >time_df=火花。createDataFrame(((1428476400),(“unix_time”])> > >time_df。選擇(from_unixtime(“unix_time”)。別名(“t”))。收集()(行(t = 2015-04-08就是))> > >火花。相依。設置(“spark.sql.session.timeZone”)