df.filter(df.is_null().any_rowwise()) throws?
MarcoGorelli opened this issue · 1 comments
MarcoGorelli commented
real issue here
what to even do about this, without raising
MarcoGorelli commented
just need to add namespace.any_horizontal
so
df: DataFrame
namespace = df__dataframe_namespace__()
df.filter(namespace.any_horizontal(df.col(col) for col in df.column_names))
should work?