“Agregar columna a DF desde otro DF” Código de respuesta

Cómo agregar una columna a un pandas df

#using the insert function:
df.insert(location, column_name, list_of_values) 
#example
df.insert(0, 'new_column', ['a','b','c'])
#explanation:
#put "new_column" as first column of the dataframe
#and puts 'a','b' and 'c' as values

#using array-like access:
df['new_column_name'] = value

#df stands for dataframe
Annoyed Antelope

Agregar columna a DF desde otro DF

# pre 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].values
# >= 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].to_numpy()
Bad Barracuda

Agregar columna a DF desde otro DF


# pre 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].values
# >= 0.24
feature_file_df['RESULT'] = RESULT_df['RESULT'].to_numpy()

Modern Mongoose

Respuestas similares a “Agregar columna a DF desde otro DF”

Preguntas similares a “Agregar columna a DF desde otro DF”

Más respuestas relacionadas con “Agregar columna a DF desde otro DF” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código