Hi Muhammet,

have you tried to use sql queries?

> spark.sql("""
>     SELECT
>         field1,
>         field2,
>         field3
>    FROM table1
>    WHERE
>         field1 != 'Nan',
>         field2 != 'Nan',
>         field3 != 'Nan'
> """)

This query filters rows containing Nan for a table with 3 columns.

Regards,
--
  Bedrytski Aliaksandr
  sp...@bedryt.ski



On Mon, Sep 26, 2016, at 09:30, muhammet pakyürek wrote:
>
> is there any way to do this directly.  if its not, is there any todo
> this indirectly using another datastrcutures of spark
>

Reply via email to