일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 사이킷런
- 김성훈 교수님
- 딥러닝
- Deep Learning
- reinforcement learning
- machine learning
- list
- unity
- Laplacian
- Python Programming
- Hessian Matrix
- 모두를 위한 RL
- 리스트
- convex optimization
- neural network
- statistics
- pandas
- 논문
- Series
- 판다스
- optimization
- 강화학습
- David Silver
- Linear algebra
- Jacobian Matrix
- paper
- ML-Agent
- rl
- 유니티
- 데이터 분석
목록판다스 (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..