pyspark.sql.functions.map_entries¶
-
pyspark.sql.functions。
map_entries
( 上校:ColumnOrName )→pyspark.sql.column.Column¶ -
收藏功能:返回一個無序數組中所有記錄的映射。
- 參數
-
-
上校
列
或str -
的名字列或表達式
-
上校
例子
> > >從pyspark.sql.functions進口map_entries> > >df=火花。sql(“選擇地圖(1,a, 2, b)作為數據”)> > >df。選擇(map_entries(“數據”)。別名(“條目”))。顯示()+ - - - - - - - - - - - - - - - - - +| |條目+ - - - - - - - - - - - - - - - - - +| ({1},{2,}]|+ - - - - - - - - - - - - - - - - - +