Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过包含许多变量的列表过滤列。某些列值包含列表中的变量,但不一定相等(变量之前或之后可能有更多字母)。我想做的一个更简单的例子:
我想翻译:
df.filter((col('column').like('%one%')) | (col('column').like('%two%'))
类似于(正常工作):
df.filter(col('column').isin(['%one%', '%two%']))
有没有办法做到这一点?
提前一百万谢谢!