You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Felix Cheung (JIRA)" <ji...@apache.org> on 2015/08/27 20:53:47 UTC

[jira] [Created] (SPARK-10322) Column %in% function is not working

Felix Cheung created SPARK-10322:
------------------------------------

             Summary: Column %in% function is not working
                 Key: SPARK-10322
                 URL: https://issues.apache.org/jira/browse/SPARK-10322
             Project: Spark
          Issue Type: Bug
          Components: R
    Affects Versions: 1.5.0
            Reporter: Felix Cheung


$ sparkR

...

> df$age
Column age
> filter(df$age %in% c(19, 30))
Error in filter(df$age %in% c(19, 30)) :
  error in evaluating the argument 'x' in selecting a method for function 'filter': Error in match(x, table, nomatch = 0L) :
  'match' requires vector arguments
> filter(df$age %in% c(19, 30))
Error in filter(df$age %in% c(19, 30)) :
  error in evaluating the argument 'x' in selecting a method for function 'filter': Error in match(x, table, nomatch = 0L) :
  'match' requires vector arguments
> filter(df$age %in% 30)
Error in filter(df$age %in% 30) :
  error in evaluating the argument 'x' in selecting a method for function 'filter': Error in match(x, table, nomatch = 0L) :
  'match' requires vector arguments




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org