Answers for "how to randomly shuffle rows in pandas python"

8

pandas shuffle rows

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

shuffle rows dataframe

df = df.sample(frac=1).reset_index(drop=True) #Use if you want to reset index order

df.sample(frac=1) # Use for no reset in index order
Posted by: Guest on July-17-2021

Code answers related to "how to randomly shuffle rows in pandas python"

Python Answers by Framework

Browse Popular Code Answers by Language