• 회원가입
  • 로그인
  • 구글아이디로 로그인

[module] Python - statistics 모듈 메서드 종류 (= 통계 모듈)

1202  
※ Python 3.4부터 statistics 내장 모듈 추가. (통계 수학 가능.)

 

statistics 모듈 메서드 종류

 

statistics.harmonic_mean()

지정 데이터의 고조파 평균 (중앙 위치) 계산.


statistics.mean()  ★

지정 데이터의 평균 (평균) 계산.


statistics.median()

지정 데이터의 중앙값 (중간값) 계산.


statistics.median_grouped()

그룹화 된 연속 데이터의 중앙값 계산.


statistics.median_high()

지정 데이터의 높은 중앙값 계산.


statistics.median_low()

주어진 데이터의 낮은 중앙값 계산.


statistics.mode()

주어진 숫자 또는 명목 데이터의 모드 (중심 경향) 계산.


statistics.pstdev()

전체 모집단의 표준편차 계산.


statistics.stdev()

데이터 샘플에서 표준편차 계산.


statistics.pvariance()

전체 모집단의 분산 계산.


statistics.variance()

데이터 샘플에서 분산 계산.

 



분류 제목
numpy PY - NumPy Searching Arrays (배열 검색) ★
numpy PY - NumPy Sorting Arrays (배열 정렬) - sort() 메서드 ★
numpy PY - NumPy Filter Array (배열 필터링) ★
numpy PY - NumPy Random : Numbers (난수 = 랜덤숫자)
numpy PY - NumPy Random : Data Distribution (랜덤 데이터 분포)
numpy PY - NumPy Random : Permutations (랜덤 순열)
numpy PY - NumPy Random : Seaborn (분포 시각화)
numpy PY - NumPy Random : Normal Distribution (정규 분포)
numpy PY - NumPy Random : Binomial Distribution (이항 분포)
numpy PY - NumPy Random : Poisson Distribution (푸아송 분포)
numpy PY - NumPy Random : Uniform Distribution (균등 분포)
numpy PY - NumPy Random : Logistic Distribution (로지스틱 분포)
numpy PY - NumPy Random : Multinomial Distribution (다항 분포)
numpy PY - NumPy Random : Exponential Distribution (지수 분포)
numpy PY - NumPy Random : Chi Square Distribution (카이제곱 분포)
numpy PY - NumPy Random : Rayleigh Distribution (레일리 분포)
numpy PY - NumPy Random : Pareto Distribution (파레토 분포)
numpy PY - NumPy Random : Zipf Distribution (지프 분포)
numpy Python - NumPy ufuncs : Intro (일반함수 소개)
numpy PY - NumPy ufuncs : Create Function (일반함수 생성)
17/24
목록
찾아주셔서 감사합니다. Since 2012