반응형
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 |
Tags
- CES 2O21 참여
- web 용어
- inorder
- vscode
- broscoding
- web 개발
- mglearn
- Keras
- classification
- web 사진
- cudnn
- C언어
- 재귀함수
- 결합전문기관
- bccard
- pycharm
- 대이터
- paragraph
- web
- CES 2O21 참가
- 데이터전문기관
- html
- KNeighborsClassifier
- discrete_scatter
- 머신러닝
- 웹 용어
- postorder
- 자료구조
- tensorflow
- java역사
Archives
- Today
- Total
목록[IT] (431)
bro's coding
numpy.shape and ndim
a.shape=[5,4,3,2,1] a.ndim=5(dimension)
[IT]/python.numpy
2020. 3. 26. 11:20
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/n1xtn/btqCU6w9PkV/lFWsEXR9KTMJjzSwCdqvI0/img.png)
label = {'Iris-setosa':0,'Iris-versicolor':1,'Iris-virginica':2} iris_df['Name']=iris_df['Name'].map(label) iris=iris_df.values #Pandas 데이터 모두를 Numpy 데이터 형태로 가져온다
[IT]/python
2020. 3. 26. 10:09
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bpPQbE/btqCZ02Pc3s/uo6WPqIpQg6vsPQUUNg521/img.png)
iris_df.info() iris_df['Name'] iris_df['Name'].unique()
[IT]/python.pandas
2020. 3. 26. 10:07
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/czyM3r/btqCZyd41Nb/Gy2mdY9AkcgPKSDUenOhXK/img.png)
주피터 노트북에서! plt.plot([1,2,3,4,5]) plt.legend(['SI'],['SW'],['PI'],[PW]]) 프롬프트에서! import matplotlib.pyplot as plt plt.plot([1,2,3,4,5]) [] plt.show() https://datascienceschool.net/view-notebook/d0b1637803754bb083b5722c9f2209d0/ Data Science School Data Science School is an open space! datascienceschool.net
[IT]/python.matplotlib
2020. 3. 25. 15:45
list/tuple/dict/set in python
LIST L=[ ] 변경 가능한 튜플 TUPLE T=( ) 변경 불가능한 리스트 DICTIONARY D={key:value} 키에 따른 값 D.items() D.keys() D.values() SET S={ } 중복 제거 –|(합집합) &(교집합) -(차집합)
[IT]/python
2020. 3. 24. 16:37