일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 시계열 특성을 고려한 이상치 탐지
- custom vision
- 다중상관분석
- 주성분 줄이기
- 계절성 모델
- 다변량 분석
- 시계열 상관 분석
- 데이터의 차원 축소
- Python
- ARIMA 모델링
- ARMA 모델링
- 데이터 분석 프로세스
- 날짜 시간 데이터 전처리
- R과 Python
- 최소-최대 정규화
- 군집화 시각화 방법
- 데이터 종류에 따른 분석 방법
- 데이터 수집 및 전처리
- 선형 판별 분석 LDA
- 상관 분석
- Q-Q 플롯
- 범주형 데이터
- 상자 그림
- 명목형 데이터
- Z-점수 기반 이상치 탐지
- 상위포지션
- 시계열 모델링
- 주성분 분석
- 순서형 데이터
- 지수평활법
- Today
- Total
목록TIL/PYTHON (5)
me made it !
0. 배경 2023 까까오 코테 기출 해설을 보는데 return 대신에 yield를 쓰길래,, yield 에 대해 친해져보기 위해 정리 * 1. 개요 우선 yield에 대해 알려면 generator 함수가 뭔지부터 알아야하기 때문에 generator부터 훑어본다. Generator란???? 'generator' 는 반복 가능한 제너레이트 객체를 반환하는 함수이다. 제너레이터 객체의 값은 전체 리스트 대신 한번에 하나씩 가져오므로 실제 값을 얻으려면 _next_() 또는 list() 메서드를 사용하여 for 루프를 사용할 수 있음 def fib(): a, b = 0, 1 while 1: yield b a, b = b, a+b 2. 본론 3. 발전 그렇다면 return 을 쓰는 대신에 yield를 쓰는 이유..

https://docs.python.org/ko/3/library/os.path.html os.path — Common pathname manipulations Source code: Lib/posixpath.py(for POSIX) and Lib/ntpath.py(for Windows). This module implements some useful functions on pathnames. To read or write files see open(), and for accessing the filesyst... docs.python.org 1. os.path.abspath(path) 경로명 path의 정규화된 절대 버전을 반환합니다. 대부분의 플랫폼에서, 이는 다음과 같이 normpath() 함수를 ..

https://docs.python.org/ko/3/library/glob.html glob — Unix style pathname pattern expansionSource code: Lib/glob.py The glob module finds all the pathnames matching a specified pattern according to the rules used by the Unix shell, although results are returned in arbitrary order. No til...docs.python.org 1. glob.glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, include_hidden=False..

미친듯한 귀야움 3.1.1 구구단 3.2.1 3.2.2 def triple(x): return x * 3 def korean_age(n): from datetime import datetime 파이썬의 메인함수 결론부터 얘기하면 if __name__ == "__main__" 의 의미는 메인 함수의 선언, 시작을 의미합니다. 해당 코드 밑에 main 등의 함수 호출 코드를 작성해서 함수의 기능을 수행합니다. 3.2.3 3.2.4 3.5.1

1.6.1 2.1.1 2.1.2 2.1.3 2.1.4 1트 rem = 8 , rev = 8 , number = 35 2트 rem = 5, rev = 85, number =3 3트 rem = 3, rev = 853, number = 0 끝 출력값 853 2.2.1 2.2.2 (1) (2) 2.2.3 2.2.4 이렇게 대충 써도 풀리긴 하든데 뭐가 잘못된건지 알고 싶다.. ? 2.2.5 (1) 2.3.1 2.3.2 2.3.3