반응형
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
- tensorflow
- java역사
- web 사진
- inorder
- postorder
- paragraph
- web 용어
- pycharm
- CES 2O21 참가
- 데이터전문기관
- web
- classification
- 웹 용어
- vscode
- 재귀함수
- 머신러닝
- CES 2O21 참여
- discrete_scatter
- C언어
- broscoding
- html
- KNeighborsClassifier
- 대이터
- Keras
- 자료구조
- mglearn
- cudnn
- bccard
- web 개발
- 결합전문기관
Archives
- Today
- Total
bro's coding
numpy.file open 본문
반응형
import numpy as np
iris_labels = ['Iris-setosa', 'Iris-versicolor', 'Iris-virginica']
iris = np.loadtxt('iris.csv', skiprows=1, delimiter=',',
converters={4: lambda s: iris_labels.index(s.decode())})
# iris = np.loadtxt('iris.csv', skiprows=1, delimiter=',',
# converters={4: lambda s: labels.index(s)}, encoding='utf-8') # latin1, ascii, utf-8, cp949
반응형
'[IT] > python.numpy' 카테고리의 다른 글
numpy.corrcoef (0) | 2020.04.27 |
---|---|
numpy.where.3단 논법 (0) | 2020.04.23 |
numpy.브로드캐스팅 (0) | 2020.03.30 |
numpy.무한대 처리 (0) | 2020.03.30 |
numpy.스칼라 연산 (0) | 2020.03.30 |
numpy.reshape(차원 변경) (0) | 2020.03.26 |
numpy.dtype이용 type변경 (0) | 2020.03.26 |
numpy.shape and ndim (0) | 2020.03.26 |
Comments