데이터 프레임 팬더에 열 추가

코드 예제

28
0

팬더 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
3
0

팬더 df 에 새 열을 추가하는 방법

import pandas as pd

data = {'Name': ['Josh', 'Stephen', 'Drake', 'Daniel'], 
        'Height': [5.5, 6.0, 5.3, 4.9]}

'''
printing data at this point will show the following
      Name  Height
0     Josh     5.1
1  Stephen     6.2
2    Drake     5.1
3   Daniel     5.2
'''

df.insert(2, "Age", [20, 21, 20, 19])

'''
printing data now will show the following

      Name  Height  Age
0     Josh     5.1   20
1  Stephen     6.2   21
2    Drake     5.1   20
3   Daniel     5.2   19
'''

비슷한 페이지

예제가있는 유사한 페이지

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................