Github user rxin commented on a diff in the pull request:
https://github.com/apache/spark/pull/5225#discussion_r27279996
--- Diff: sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala ---
@@ -730,6 +731,23 @@ class DataFrame private[sql](
Generate(generator, join = true, outer = false, None, logicalPlan)
}
+ /**
+ * Returns a new [[DataFrame]] that omits rows with `NULL` values in the
specified columns.
+ * If no columns are specified, a row is omitted if any column contains
`NULL`.
+ *
+ * @group dfops
+ */
+ @scala.annotation.varargs
+ def dropna(cols: String*): DataFrame = {
--- End diff --
@marmbrus @shivaram should we name this dropna or dropNull?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]