0
我試圖使用「鏈接時」功能。 換句話說,我想要得到兩個以上的輸出。PySpark:當具有多個輸出功能時
我嘗試使用串連的相同的邏輯IF函數在Excel中:
df.withColumn("device_id", when(col("device")=="desktop",1)).otherwise(when(col("device")=="mobile",2)).otherwise(null))
但是,這並不工作,因爲我不能把一個元組進入「否則」功能。
它的工作原理!非常感謝你!! – Fede