Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tensorflow
- 시각화
- Pandas
- MySQL
- Google Analytics
- 한빛미디어
- 텐서플로
- Tistory
- 서평단
- 한빛미디어서평단
- 서평
- SQL
- Blog
- 리눅스
- Python
- 블로그
- 월간결산
- python visualization
- Visualization
- 딥러닝
- Ga
- matplotlib
- Linux
- 통계학
- 독후감
- 파이썬
- 티스토리
- MATLAB
- 파이썬 시각화
- 매틀랩
Archives
- Today
- Total
목록python kurtosis (1)
pbj0812의 코딩 일기
[통계학] python을 통한 왜도 / 첨도 구현
0. 목표 - python으로 왜도와 첨도를 구현하고 scipy 함수와 비교 1. 사전이론 1) 왜도 - 사진링크 2) 첨도 - 사진링크 2. 사전 함수 준비 1) 평균 def mean(inp): result = 0 len_inp = len(inp) for i in inp: result += i result = result / len_inp return result 2) 분산 def var(inp): result = 0 len_inp = len(inp) for i in inp: result += (i - mean(inp)) ** 2 result = result / len_inp return result 3) 제곱근 def sqrt(inp): result = inp/2 for i in range(30): ..
Science/통계학
2020. 8. 16. 14:27