You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dropNulls follows pandas convention, similar to dropNa
In stdlib there's list.filterNotNull, and this is what Kotlin developers expect more.
I suggest to add
df.filterIsInstance<Type> { col and col }
df.filterNotNull { col and col }