Skip to content

Commit

Permalink
Modify the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-iskw committed Jun 23, 2015
1 parent f4309a7 commit 1f64423
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/pkg/R/column.R
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,14 @@ setMethod("cast",
}
})

#' Specify multiple values
#' Match a column with given values.
#'
#' @rdname column
#' @return a matched value as a result of comparing with given values.
#' @return a matched values as a result of comparing with given values.
#' \dontrun{
#' filter(df, "age in (10, 30)")
#' where(df, df$age %in% c(10, 30))
#' }
setMethod("%in%",
signature(x = "Column"),
function(x, table) {
Expand Down

0 comments on commit 1f64423

Please sign in to comment.