{Programing}(131)
-
matplotlib
시각화 패키지. 각종 꺾은선 그래프, 분포 그래프, 이미지, 막대그래프, 3차원 그래프, 원형 그래프, 표 등 데이터를 표현할수 있는 모든 방식을 지원. matplotlib.org/stable/index.html Matplotlib: Python plotting — Matplotlib 3.4.2 documentation matplotlib.org 머신러닝, 딥러닝에선 필수적인 패키지. 학습과정이나 결과등을 판단하기 위한 보조자료로서 각종 그래프가 필요하기때문. 치트시트 github.com/matplotlib/cheatsheets#cheatsheets matplotlib/cheatsheets Official Matplotlib cheat sheets. Contribute to matplotlib/cheat..
2021.05.10 -
scikit-learn
기본적인 machine learning 패키지. 분류, 회귀, 군집화, 차원감소, 모델 선택, 데이터 전처리 등 기능을 제공. scikit-learn.org/stable/user_guide.html User guide: contents — scikit-learn 0.24.2 documentation scikit-learn.org 지도학습과 비지도학습은 물론, 시각화 부분까지 포함. 기계학습의 기본적인 알고리즘은 전부 구현되어있고, 신경망도 구현되어있음. 패키지 학습에 도움을 줄수 있는 데이터 셋도 다운받을수 있게 되어있음.
2021.05.10 -
기본 커맨드 변수 및 시스템 변수, 약속 함수명 등
시스템 변수들 argv 커맨드 라인 입력 인수들 builtin_module_names 연결된 C 모듈들 byteorder 기본 바이트 오더방식 check_interval 신호 확인 주기 exec_prefix 루트 디렉토리 executable 실행파일 이름 exitfunc 종료함수 이름 modules 불러와진 모듈들 path 검색 경로 platform 현재 플랫폼 stdin, stdout, stderr 입출력을 위한 파일 객체 version_info 파이썬 버전 정보 winver 버전 번호 시스템 인수 sys.argv : python foo.py bar -c qux --h sys.argv[0] foo.py sys.argv[1] bar sys.argv[2] -c sys.argv[3] qux sys.argv[..
2021.05.06 -
토이프로젝트 - 은행 정보 저장 시스템 - 제작중
-필요 정보- 계좌 번호 : int 고객 이름 : string 잔액 : int -필요 기능- 파일 읽기 : 고객정보.csv 를 읽어와 메모리에 업뎃. 파일 저장 : 고객정보.csv 에 현재까지 수정된 데이터를 저장함. 정보 저장 : 고객정보를 입력 받음. 정보 출력 : 고객 정보중 키값을 입력받아 정보를 출력 정보 검색 : 키값을 입력받아 정보를 반환. 정보 수정 : 키값과 수정할 정보를 받아 검색후 정보 수정. 정보 삭제 : 키값을 입력받아 정보 삭제 검색시에 키값과 일치하는 정보가 없다면 오류 메시지 출력. stl map을 사용해보자. //고객정보 구조체 struct Account_Customer { int Account_Number; string Customer_Name; int Account_Ba..
2021.05.04 -
HTML+CSS 토이프로젝트 목록
www.geeksforgeeks.org/top-10-projects-for-beginners-to-practice-html-and-css-skills/ Top 10 Projects For Beginners To Practice HTML and CSS Skills - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org 1..
2021.05.03 -
아두이노 프로젝트 리스트
www.electronicshub.org/arduino-project-ideas/#Arduino_Wireless_Projects 200+ Arduino Projects List For Final Year Students Best list of arduino project ideas along with sources we have published here. It includes arduino based battery charger, arduino based thermostat and etc.. www.electronicshub.org 200여개 이상의 아두이노 프로젝트를 모아놓은 페이지 취미삼아 나중에 만들어보는거도 좋겠다
2021.05.03