Just Fighting

DataFrame의 attrs 속성 본문

Python

DataFrame의 attrs 속성

yennle 2025. 3. 2. 15:09
728x90

 

 

데이터 프레임의 attrs속성은 데이터프레임의 정보를 저장할 수 있는 속성이다.

데이터의 출처, 설명, 단위 등의 부가 정보를 저장해서 사용하면 된다.

 

딕셔너리의 형태이기 때문에, 딕셔너리를 사용하듯이 저장하고 조회하면 된다.

import pandas as pd

test = {'a':[2,3,4], 'b':[5,4,3]}
df = pd.DataFrame(test)
print('df.attrs의 결과 :', df.attrs)

df.attrs['name'] = 'TEST'  # 저장
print('df.attrs의 결과 :', df.attrs)
print("df.attrs['name']의 결과 :", df.attrs['name'])

 

 

 

순서대로 실행한 예시도 함께!

 

 

https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.attrs.html

 

pandas.DataFrame.attrs — pandas 2.2.3 documentation

Dictionary of global attributes of this dataset. Warning attrs is experimental and may change without warning. Many operations that create new datasets will copy attrs. Copies are always deep so that changing attrs will only affect the present dataset. pan

pandas.pydata.org

 

 

 

728x90

'Python' 카테고리의 다른 글

파이썬의 getter, setter (@property)  (1) 2025.03.04
빈 이중배열과 주소값  (0) 2023.07.05
[Python] 중복 순열 구하기 (product)  (0) 2022.11.30
datetime 함수 정리  (0) 2022.10.20
[Python] Joblib으로 객체 저장하기  (0) 2022.09.29
Comments