Answers for "python df shuffle"

8

pandas shuffle rows

df = df.sample(frac=1).reset_index(drop=True)
Posted by: Guest on November-26-2019
0

randomly shuffle pandas dataframe

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

Python Answers by Framework

Browse Popular Code Answers by Language