“Python secara acak menyiram deretan data panda” Kode Jawaban

Python secara acak menyiram deretan data panda

# 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
Charles-Alexandre Roy

Pandas Shuffle Rows

df = df.sample(frac=1).reset_index(drop=True)
Cook's Tree Boa

Jawaban yang mirip dengan “Python secara acak menyiram deretan data panda”

Pertanyaan yang mirip dengan “Python secara acak menyiram deretan data panda”

Lebih banyak jawaban terkait untuk “Python secara acak menyiram deretan data panda” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya