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
- mongoose find
- async
- css 기초
- req.queries
- CSS
- express 프로젝트 시작하기
- HTML
- mongoose populate
- Axios put
- 프론트엔드
- res.set
- res.render
- Axios delete
- req.get
- Axios get
- mongoose update
- await
- 자바스크립트
- http
- 파이썬
- mongoose delete
- res.status
- node.js란
- req.body
- javascript
- Axios post
- 웹개발
- promise
- req.params
- mongoose create
Archives
- Today
- Total
목록insert (1)
모스카토
Pandas 기초
1. import import pandas as pd import numpy as np 보통 numpy를 pandas와 같이 import 한다. 2. float 데이터 range 정확하게 만들기 * 가끔씩 np.arange()를 이용해 float의 범위를 만들 때 0.00000000001 정도의 오차가 생길 때가 있다. list(np.arange(f_start, f_end)/10) f_start 에 시작할 float * 10 을 주고, 똑같이 f_end에 시작할 float * 10 을 준다. np.arange()로 범위를 만든 후 /10을 해주면 np.arange의 미세한 오차를 수정할 수 있다. 3. DataFrame 생성 df = pd.DataFrame() df = pd.DataFrame(column..
파이썬
2021. 4. 30. 16:25