我有一个看起来像这样的Pyspark数据框
>>> df1.show(1,False)
+---------------------------+
|col1 |
+---------------------------+
|[this, is, a, sample, text]| => Not a fixed array elements
+---------------------------+
还有一个类似的查找表/ df
>>> lookup.show()
+------+
|lookup|
+------+
| this|
| is|
| a|
|sample|
+------+
对于每一行,我需要在df1
数据帧中查找lookup
的每个数组元素,并返回true或false [T,T,T,T,F]
如何遍历df1
?