Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas random sample

# n: number of rows to be extracted randomly
# random_state fixed for reproducibility
# replace = True for extraction with replacement

df.sample(n=3, random_state=42, replace=False)
Source by pandas.pydata.org #
 
PREVIOUS NEXT
Tagged: #pandas #random #sample
ADD COMMENT
Topic
Name
7+7 =