일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- SQL
- tensorflow
- 한빛미디어서평단
- Tistory
- 한빛미디어
- MATLAB
- MySQL
- 딥러닝
- 파이썬 시각화
- 시각화
- Python
- 서평단
- matplotlib
- Google Analytics
- 블로그
- 월간결산
- python visualization
- Ga
- Visualization
- 텐서플로
- 티스토리
- Linux
- 리눅스
- 독후감
- 통계학
- 매틀랩
- Blog
- Pandas
- 서평
- 파이썬
- Today
- Total
목록ComputerLanguage_Program (320)
pbj0812의 코딩 일기

0. 목표 - Django를 통한 웹페이지 제작 / 구동 1. 설치 1) 폴더 구성 - mysite 2) virtualenv 설치(virtualenv로 미 실행시 후에 에러 발생) pip install virtualenv 3) 가상환경 실행 - 완료시 앞에 (myvenv)가 붙음 virtualenv myvenv source myvenv/bin/activate 3) Django 설치 pip3 install Django 2. 실습 1) 프로젝트 생성 - 현재 폴더(mysite)에 manage.py와 django_test 폴더 생성됨 django-admin startproject django_test 2) data migrate - db.sqlite3 생성 python manage.py migrate 3) 세..

0. 준비물 - test.txt - 1 ~ 20 1. 실습 1) head - 앞에서 10줄(기본) head ./test.txt 2) head -n 숫자 - 앞에서 숫자만큼 출력 head -n 5 ./test.txt 3) head -n -숫자 - 뒤에서 숫자만큼 생략하고 출력(mac에서는 안먹힘) head -n -2 ./test.txt 2. 참고 - 리눅스 커맨드라인 툴

- 해당 링크를 그대로 실습하며 제작하였습니다. 0. 목표 - jupyter notebook을 이용해서 슬라이드 제작 1. 설치 1) rise 관련 패키지 설치 conda install -c conda-forge rise 2) rise 설치 pip3 install RISE 2. 테스트 코드 작성 및 실행 1) view -> Cell Toolbar -> Slideshow 2) 셀마다 드롭다운 생성 - 원하는 형태 클릭 3) 그래프 버튼을 클릭하여 실행 3. 결과 4. 참고 - 링크

0. 목표 - W3SCHOOL CSS Tutorial 쿡북 제작 1. 기본 형태 2. 코드 1) 기본 예제 Hello World! These paragraphs are styled with CSS. 2) element selector Every paragraph will be affected by the style. Me too! And me! 3) id selector Hello World! This paragraph is not affected by the style. 4) class selector Red and center-aligned heading Red and center-aligned paragraph. This heading will not be affected This paragraph..

이 소스는 W3SCHOOL의 소스를 실습/변형한 것입니다. 0. 목표 - html 쿡북 제작 1. 코드 1) 기본 형태 내용 2) headings - h1부터 h6까지 존재 This is heading 1 This is heading 2 This is heading 3 This is heading 4 This is heading 5 This is heading 6 3) paragraph This is a paragraph. This is another paragraph. 4) link HTML Links HTML links are defined with the a tag: This is a link 5) image HTML Images HTML images are defined with the img t..

0. 목표 - common.css, reset.css 세팅 1. 폴더 트리 구조 - index.html - css ㄴ reset.css ㄴ common.css ㄴ main.css 2. reset.css - 사용목적 : 여백 초기화 - 공식문서 접근(링크) - 하위 내용 부분을 복사해서 reset.css로 저장 * a태그 부분 추가(사용자 맘대로) /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, ..

1. 설치 pip install networkx 2. 코드 1) 라이브러리 호출 import networkx as nx import matplotlib.pyplot as plt # 그래프 생성 G = nx.DiGraph() 2) 노드(점) 생성 G.add_nodes_from([1, 2, 3, 4, 5]) 3) 엣지(선) 생성 G.add_edges_from([(1, 2), (2, 1), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2,4), (4, 2), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3)]) 4) degree 생성 ..

1. PyCharm 설치 - https://www.jetbrains.com/pycharm/(가장 최근 버전으로...) PyCharm: the Python IDE for Professional Developers by JetBrains The Python & Django IDE with intelligent code completion, on-the-fly error checking, quick-fixes, and much more... www.jetbrains.com 2. Project 설정 1) PyCharm 실행 후 'Create New Project' 클릭 2) Project InterPreter 옆의 화살표 '▶' 누르기 3) Virtualenv로 설정 및 'Create' 4) File -> Se..

0. 목표 - xlsx 파일 내용을 읽은 후 해당 내용의 빈도수를 통한 워드클라우드 생성 - 데이터 형태(네이트 기사 복붙) 1. 코드 작성 1) 라이브러리 install & import - NLP4kec는 제대로 설치되지 않아 여기서 다운받고 위치 지정 # install #install.packages("tidyverse") #install.packages("rJava") #install.packages("C:/Users/user/Desktop/NLP4kec_1.3.0.zip", repos = NULL) #install.packages("wordcloud2") #install.packages("RColorBrewer") # import library(tidyverse) # 데이터 전처리(stringr)..
0. 목표 - struct 사용법 숙지 1. 코드 - 함수 선언 이전에 struct 선언 - name :, age : 이런것들은 생략 가능(생략시 코드 헷갈릴 가능성 존재) package main import "fmt" type person struct { name string age int food []string } //start point func main() { food := []string{"a", "b"} me := person{name: "pbj", age: 18, food: food} fmt.Println(me) fmt.Println(me.name) } 2. 결과 {pbj 18 [a b]} pbj 3. 참고 - 쉽고 빠른 Go 시작하기(노마드코더)