AI/python

python 점표기법(dot notation)

bitpoint 2024. 4. 14. 11:20

pandas dataframe, bunch(key-value 방식 같은?) type은 점표기법(dot notation)으로 접근이 가능하다.

 

# Age 열의 값이 30 이상인 모든 행을 선택합니다.
data_pandas[data_pandas.Age > 30]

 

'AI > python' 카테고리의 다른 글

list comprehension vs generator  (0) 2024.04.14
list conprehension  (0) 2024.04.14
python slice :와 extended slice ::  (0) 2024.04.01
string.punctuation  (2) 2024.03.23
python 배열, 리스트 등에서 마지막 콤마의 의미  (0) 2024.03.23