Github user sun-rui commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10160#discussion_r46767022
  
    --- Diff: R/pkg/R/DataFrame.R ---
    @@ -677,25 +677,44 @@ setMethod("unique",
     #' collect(sample(df, TRUE, 0.5))
     #'}
     setMethod("sample",
    -          # TODO : Figure out how to send integer as java.lang.Long to JVM 
so
    -          # we can send seed as an argument through callJMethod
               signature(x = "DataFrame", withReplacement = "logical",
    -                    fraction = "numeric"),
    -          function(x, withReplacement, fraction) {
    +                    fraction = "numeric", seed = "missing"),
    +          function(x, withReplacement, fraction, seed) {
                 if (fraction < 0.0) stop(cat("Negative fraction value:", 
fraction))
                 sdf <- callJMethod(x@sdf, "sample", withReplacement, fraction)
                 dataFrame(sdf)
               })
     
     #' @rdname sample
    +#' @name sample
    +setMethod("sample",
    +          # we can send seed as an argument through callJMethod
    +          signature(x = "DataFrame", withReplacement = "logical",
    +                    fraction = "numeric", seed = "numeric"),
    --- End diff --
    
    +1


---
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]

Reply via email to