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 | 31 |
Tags
- 명령어
- 튜토리얼
- DB 데이터
- MySQL 세팅
- #if
- heroku
- 콘솔 가상환경 # 콘솔 #가상환경
- 사이트 도메인
- jinja2
- VS Code
- #endif
- openweathermap
- 환경변수 설정
- 성능지표
- bootstrap
- DB 데이터 저장
- Django
- OpenCV + Flask
- #else
- PyQt5
- flask
- OpenCV
- bootstrap4 패키지
- href
- javascript
- #undef
- #ifndef
- 실시간 시계
- #ifdef
- Action
Archives
- Today
- Total
목록Python/Pandas (1)
PROGRAMMING
Python pandas ipynb 코드블럭
In [1]: import numpy as np import pandas as pd In [2]: s1 = pd.Series(np.arange(5), np.arange(100, 105)) s1 Out[2]: 100 0 101 1 102 2 103 3 104 4 dtype: int32 In [3]: s1.values Out[3]: array([0, 1, 2, 3, 4]) In [4]: s1.index Out[4]: Int64Index([100, 101, 102, 103, 104], dtype='int64') In [5]: s1[104] Out[5]: 4 In [6]: s1[105] = 70 print(s1.index) s1 Int64Index([100, 101, 102, 103, 104, 105], dty..
Python/Pandas
2020. 12. 19. 14:07