Answers for "randomly sample from dataframe python"

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

randomly shuffle pandas dataframe

  shuffled_train_df = train_df.reindex(np.random.permutation(train_df.index))
Posted by: Guest on July-09-2021

Code answers related to "randomly sample from dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language