250x250
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
- fileinput
- MySqlDB
- MySQL
- node.js
- inplace()
- shuffle()
- View
- CSS
- JS
- decode()
- items()
- 파이썬
- randrange()
- discard()
- zipfile
- remove()
- mro()
- count()
- glob
- HTML
- choice()
- 오버라이딩
- locals()
- __len__
- fnmatch
- Database
- __getitem__
- __sub__
- __annotations__
- shutil
Archives
- Today
- Total
목록numpy (1)
흰둥이는 코드를 짤 때 짖어 (왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!왈!)

1. 넘파이(Numpy) 수학, 과학 계산용 패키지 자료구조(ndarray)를 제공 -> 파이썬의 list보다 속도가 빠름. 작은 메모리를 사용 install !pip install numpy import import numpy 보편적으로 np 라고 명한다. import numpy as np 1-1. ndarray ndarray를 선언할 때는 리스트를 array메소드에 매개변수롤 받아 선언한다. ndarr1 = np.array([1, 2 ,3 ,4]) print(ndarr1) print(type(ndarr1)) # ndarray = n dimension array [1 2 3 4] # 리스트를 ndarray로 변환하는 방법 ndarr1 = np.array(list1) ndarr2 = np.array(li..
파이썬 데이터 분석
2023. 5. 18. 15:00