“Tambahkan Kolom Baru ke DataFrame Pandas” Kode Jawaban

Cara Menambahkan Kolom ke DF Pandas

#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

Python Cara Menambahkan Kolom ke DataFrame Pandas

# Basic syntax:
pandas_dataframe['new_column_name'] = ['list', 'of', 'column', 'values']

# Note, the list of column values must have length equal to the number
# 	of rows in the pandas dataframe you are adding it to.

# Add column in which all rows will be value:
pandas_dataframe['new_column_name'] = value
# Where value can be a string, an int, a float, and etc 
Charles-Alexandre Roy

Tambahkan kolom DataFrame untuk mengatur


In [79]:

df
Out[79]:
         Date, Open, High,  Low,  Close
0  01-01-2015,  565,  600,  400,    450
In [80]:

df['Name'] = 'abc'
df
Out[80]:
         Date, Open, High,  Low,  Close Name
0  01-01-2015,  565,  600,  400,    450  abc

Sleepy Swan

Tambahkan Kolom Baru ke DataFrame Pandas

# Import pandas package
import pandas as pd
 
# Define a dictionary containing Students data
data = {'Name': ['Jai', 'Princi', 'Gaurav', 'Anuj'],
        'Height': [5.1, 6.2, 5.1, 5.2],
        'Qualification': ['Msc', 'MA', 'Msc', 'Msc']}
 
# Convert the dictionary into DataFrame
df = pd.DataFrame(data)
 
# Declare a list that is to be converted into a column
address = ['Delhi', 'Bangalore', 'Chennai', 'Patna']
 
# Using 'Address' as the column name
# and equating it to the list
df['Address'] = address
 
# Observe the result
df
Sibahle Molphy

Jawaban yang mirip dengan “Tambahkan Kolom Baru ke DataFrame Pandas”

Pertanyaan yang mirip dengan “Tambahkan Kolom Baru ke DataFrame Pandas”

Lebih banyak jawaban terkait untuk “Tambahkan Kolom Baru ke DataFrame Pandas” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya