728x90
In [1]:
import pandas as pd
A Dictionary: A collection of key-value pairs
In [2]:
dict1 = {'Client ID' : 101,
'Client Name' : 'David',
'Net worth [$]' : 1500,
'Years' : 12}
In [3]:
# Show
dict1
Out[3]:
{'Client ID': 101, 'Client Name': 'David', 'Net worth [$]': 1500, 'Years': 12}
In [4]:
# datatype
type(dict1)
Out[4]:
dict
In [5]:
s1 = pd.Series(dict1); s1
Out[5]:
Client ID 101
Client Name David
Net worth [$] 1500
Years 12
dtype: object
728x90
'Data Analytics with python > [Data Analysis]' 카테고리의 다른 글
[Pandas][Series] S1_05_Methods: 기본 함수 (0) | 2023.01.17 |
---|---|
[Pandas][Series] S1_04_Attributes: 기본 속성 (0) | 2023.01.17 |
[Pandas][Series] S1_02_custom_index: 사용자 지정 인덱스 (0) | 2023.01.17 |
[Pandas][Series] S1_01_Numeric Default Index: 기본 인덱스 (0) | 2023.01.17 |
[실전 연습] 보험료 예측 (insurance) (0) | 2023.01.17 |
댓글