“Python aleatorize un DataFrame Pandas” Código de respuesta

Python aleatoriamente las filas de 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
Charles-Alexandre Roy

Python aleatorize un DataFrame Pandas

df = df.sample(frac=1).reset_index(drop=True)
Confused Chipmunk

Respuestas similares a “Python aleatorize un DataFrame Pandas”

Preguntas similares a “Python aleatorize un DataFrame Pandas”

Más respuestas relacionadas con “Python aleatorize un DataFrame Pandas” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código