xxxxxxxxxx
df.sample(frac=0.5, replace=False, random_state=42)
df.sample(n=3, replace=False, andom_state=42)
xxxxxxxxxx
# 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)