-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-12158] [SparkR] [SQL] Fix 'sample' functions that break R unit test cases #10160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ec77010
2ab89e8
34d0118
4337c35
a78109e
ad3ea31
493b368
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -662,6 +662,7 @@ setMethod("unique", | |
#' @param x A SparkSQL DataFrame | ||
#' @param withReplacement Sampling with replacement or not | ||
#' @param fraction The (rough) sample target fraction | ||
#' @param seed Randomness seed value | ||
#' | ||
#' @family DataFrame functions | ||
#' @rdname sample | ||
|
@@ -677,13 +678,17 @@ 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) { | ||
function(x, withReplacement, fraction, seed) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @felixcheung Shouldn't we document this param in the roxygen doc above ? Otherwise how would anybody know we support a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes we should add a |
||
if (fraction < 0.0) stop(cat("Negative fraction value:", fraction)) | ||
sdf <- callJMethod(x@sdf, "sample", withReplacement, fraction) | ||
if (!missing(seed)) { | ||
# TODO : Figure out how to send integer as java.lang.Long to JVM so | ||
# we can send seed as an argument through callJMethod | ||
sdf <- callJMethod(x@sdf, "sample", withReplacement, fraction, as.integer(seed)) | ||
} else { | ||
sdf <- callJMethod(x@sdf, "sample", withReplacement, fraction) | ||
} | ||
dataFrame(sdf) | ||
}) | ||
|
||
|
@@ -692,8 +697,8 @@ setMethod("sample", | |
setMethod("sample_frac", | ||
signature(x = "DataFrame", withReplacement = "logical", | ||
fraction = "numeric"), | ||
function(x, withReplacement, fraction) { | ||
sample(x, withReplacement, fraction) | ||
function(x, withReplacement, fraction, seed) { | ||
sample(x, withReplacement, fraction, seed) | ||
}) | ||
|
||
#' nrow | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't delete this comment. move it close to as.integer(seed). This is a known limitation of serde now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. Added it back.