get random samples from pandas dataframe code example
Example: 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)