일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CES 2O21 참가
- C언어
- bccard
- 데이터전문기관
- mglearn
- inorder
- paragraph
- CES 2O21 참여
- 머신러닝
- cudnn
- java역사
- 자료구조
- 대이터
- web 사진
- Keras
- discrete_scatter
- html
- KNeighborsClassifier
- tensorflow
- web 용어
- 결합전문기관
- 웹 용어
- 재귀함수
- vscode
- web 개발
- broscoding
- pycharm
- postorder
- classification
- web
- Today
- Total
목록전체 글 (688)
bro's coding
![](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
LIST L=[ ] 변경 가능한 튜플 TUPLE T=( ) 변경 불가능한 리스트 DICTIONARY D={key:value} 키에 따른 값 D.items() D.keys() D.values() SET S={ } 중복 제거 –|(합집합) &(교집합) -(차집합)
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cj6aHi/btqCX9L0t4c/R81PvgWgREYyKcZ7ksjt8k/img.png)
https://repo.anaconda.com/archive Anaconda installer archive repo.anaconda.com Anaconda3-5.1.0-Windows-x86_64.exe 불러오는 중입니다... - anaconde prompt 실행 - 원하는 디렉토리로 이동 후 jupyter notebook
show databases; use 인사급여; show tables; select * from 사원; select count(*), count(퇴사일자) from 사원; ## 직급별 인원수 select 직급, count(*) as 인원수 from 사원 group by 직급; ## 직급별 인원 및 평균 월급 select 직급,count(*) as 인원수, avg(월급여) from 사원 group by 직급; ## 급여 구분에 따른 평균 월급 select 급여구분, count(*), avg(월급여) from 사원 group by 급여구분; ## 입사 년도별 평균 월급 select year(입사일자) as 입사년도, count(*) as 인원수, avg(월급여) as 평균월급 from 사원 group by y..