explain() 메소드는 다음과 같은 일부 통계 데이터를 계산하는 데 사용됩니다. 백분위수, 평균 그리고 성병 Series 또는 DataFrame의 숫자 값. 숫자 및 객체 계열과 혼합 데이터 유형의 DataFrame 열 세트를 모두 분석합니다.
통사론
DataFrame.describe(percentiles=None, include=None, exclude=None)
매개변수
보고
Series 및 DataFrame의 통계 요약을 반환합니다.
실시예 1
import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe()
산출
자바 입력
count 3.0 mean 2.0 std 1.0 min 1.0 25% 1.5 50% 2.0 75% 2.5 max 3.0 dtype: float64
실시예2
import pandas as pd import numpy as np a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe()
산출
count 4 unique 3 top q freq 2 dtype: object
실시예3
import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe() a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe() info = pd.DataFrame({'categorical': pd.Categorical(['s','t','u']), 'numeric': [1, 2, 3], 'object': ['p', 'q', 'r'] }) info.describe(include=[np.number]) info.describe(include=[np.object]) info.describe(include=['category'])
산출
categorical count 3 unique 3 top u freq 1
실시예4
import pandas as pd import numpy as np a1 = pd.Series([1, 2, 3]) a1.describe() a1 = pd.Series(['p', 'q', 'q', 'r']) a1.describe() info = pd.DataFrame({'categorical': pd.Categorical(['s','t','u']), 'numeric': [1, 2, 3], 'object': ['p', 'q', 'r'] }) info.describe() info.describe(include='all') info.numeric.describe() info.describe(include=[np.number]) info.describe(include=[np.object]) info.describe(include=['category']) info.describe(exclude=[np.number]) info.describe(exclude=[np.object])
산출
categorical numeric count 3 3.0 unique 3 NaN top u NaN freq 1 NaN mean NaN 2.0 std NaN 1.0 min NaN 1.0 25% NaN 1.5 50% NaN 2.0 75% NaN 2.5 max NaN 3.0