일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 사이킷런
- list
- paper
- 논문
- 리스트
- Python Programming
- 유니티
- 김성훈 교수님
- Series
- 판다스
- 딥러닝
- David Silver
- Jacobian Matrix
- convex optimization
- ML-Agent
- optimization
- machine learning
- Linear algebra
- 데이터 분석
- Deep Learning
- 모두를 위한 RL
- pandas
- Laplacian
- reinforcement learning
- unity
- 강화학습
- Hessian Matrix
- rl
- statistics
- neural network
목록판다스 (6)
RL Researcher
1. Index를 기준으로 연산 s1 = pd.Series([1, 2, 3, 4], ['a', 'b', 'c', 'd']) s1 ======================================================================== a 1 b 2 c 3 d 4 dtype: int64 s2 = pd.Series([6, 3, 2, 1], ['d', 'c', 'b', 'a']) s2 ======================================================================== d 6 c 3 b 2 a 1 dtype: int64 s1 + s2 ============================================================..
1. Series size, shape, unique, count, value_counts 함수 size : 개수 반환 shape : 튜플형태로 shape반환 unique: 유일한 값만 ndarray로 반환 count : NaN을 제외한 개수를 반환 mean: NaN을 제외한 평균 value_counts: NaN을 제외하고 각 값들의 빈도를 반환 s = pd.Series([1, 1, 2, 1, 2, 2, 2, 1, 1, 3, 3, 4, 5, 5, 7, np.NaN]) s ======================================================================== 0 1.0 1 1.0 2 2.0 3 1.0 4 2.0 5 2.0 6 2.0 7 1.0 8 1.0 9 3.0..