Answers for "pandas dataframe generate random"

0

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)
Posted by: Guest on May-12-2021
0

python randomize a dataframe pandas

df = df.sample(frac=1).reset_index(drop=True)
Posted by: Guest on January-04-2021

Code answers related to "pandas dataframe generate random"

Python Answers by Framework

Browse Popular Code Answers by Language