📜  列表中的 pyspark 过滤器列 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:29.809000             🧑  作者: Mango

代码示例1
# define a list of scores
l = [10,18,20]

# filter out records by scores by list l
records = df.filter(~df.score.isin(l))