Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Tags
more
Archives
Today
Total
관리 메뉴

SERi

pandas.DataFrame.describe 본문

Pandas

pandas.DataFrame.describe

링다링 2022. 11. 24. 16:24
DataFrame.describe(
                    percentiles=None,   # 출력에 포함할 백분위수
                    include=None,   # 선택 사항 결과에 포함할 데이터 유형
                    exclude=None,   # 선택 사항 결과에서 생략할 데이터 유형
                    datetime_is_numeric=False   # datetime dtype을 숫자로 처리할지 여부
                    )

 

titanic.describe(include = ["int","float"])

 

titanic.describe(exclude = "object")

 

'Pandas' 카테고리의 다른 글

pandas.DataFrame.sort_values  (0) 2022.11.24
pandas.DataFrame.agg  (0) 2022.11.24
pandas.DataFrame.loc  (0) 2022.11.24
pandas.DataFrame.corr  (0) 2022.10.07
Comments