Horje
pandas shuffle rows Code Example
python randomly shuffle rows of pandas dataframe
# Basic syntax:
df = df.sample(frac=1, random_state=1).reset_index(drop=True)
# Where:
#	- frac=1 specifies returning 100% of the original rows of the 
#		dataframe (in random order). Change to a decimal (e.g. 0.5) if
#		you want to sample say, 50% of the original rows
#	- random_state=1 sets the seed for the random number generator and
#		is useful to specify if you want results to be reproducible
#	- .reset_index(drop=True) specifies resetting the row index of the
#		shuffled dataframe
pandas shuffle rows
df = df.sample(frac=1).reset_index(drop=True)




Python

Related
python json dump utf8 Code Example python json dump utf8 Code Example
how to create dataframe in python Code Example how to create dataframe in python Code Example
python shuffle list Code Example python shuffle list Code Example
print all keys having same value Code Example print all keys having same value Code Example
python remove empty string from list Code Example python remove empty string from list Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8