search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

PySpark DataFrame | sampleBy method

schedule Aug 12, 2023
Last updated
local_offer
PySpark
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

PySpark DataFrame's sampleBy(~) method performs stratified sampling based on a column. Consult examples below for clarification.

Parameters

1. col | Column or string

The column by which to perform sampling.

2. fractions | dict

The probability with which to include the value. Consult examples below for clarification.

3. seed | int | optional

Using the same value for seed produces the exact same results every time. By default, no seed will be set, which means that the outcome will be different every time you run the method.

Return Value

A PySpark DataFrame.

Examples

Consider the following PySpark DataFrame:

from pyspark.sql.types import *
vals = ['a','a','a','a','a','a','b','b','b','b']
df = spark.createDataFrame(vals, StringType())
df.show(3)
+-----+
|value|
+-----+
| a|
| a|
| a|
+-----+
only showing top 3 rows

Performing stratified sampling

Let's performing stratified sampling based on the column value:

df.sampleBy('value', fractions={'a':0.5,'b':0.25}).show()
+-----+
|value|
+-----+
| a|
| a|
| a|
| b|
| b|
+-----+

Here, rows with value 'a' will be included in our sample with a probability of 0.5, while rows with value 'b' will be included with a probability of 0.25.

WARNING

The number of samples that will be included will be different each time. For instance, specifying {'a':0.5} does not mean that half the rows with the value 'a' will be included - instead it means that each row will be included with a probability of 0.5. This means that there may be cases when all rows with value 'a' will end up in the final sample.

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!