pyspark.sql.functions.map_from_entries

pyspark.sql.functions。 map_from_entries ( 上校:ColumnOrName )→pyspark.sql.column.Column

收藏功能:返回一個給定數組的地圖創建條目。

參數
上校 或str

的名字列或表達式

例子

> > >pyspark.sql.functions進口map_from_entries> > >df=火花sql(“選擇數組(struct(1 ' ')、結構(2 b))作為數據”)> > >df選擇(map_from_entries(“數據”)別名(“地圖”))顯示()+ - - - - - - - - - - - - - - - - - +| |地圖+ - - - - - - - - - - - - - - - - - +| {1 - > 2 - > b} |+ - - - - - - - - - - - - - - - - - +