일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- 시각화
- Visualization
- 리눅스
- 서평단
- Linux
- python visualization
- 파이썬
- Google Analytics
- 한빛미디어
- 통계학
- MySQL
- SQL
- 파이썬 시각화
- matplotlib
- Tistory
- 텐서플로
- MATLAB
- Pandas
- 티스토리
- 독후감
- 블로그
- 월간결산
- 딥러닝
- tensorflow
- Ga
- Blog
- 한빛미디어서평단
- 서평
- 매틀랩
- Today
- Total
목록전체 글 (596)
pbj0812의 코딩 일기
0. 예제 - 아래 예제에서 zoo 라는 변수에 cage 라는 이름의 namedtuple 을 할당했지만 zoo 라는 변수에 할당된 namedtuple 은 cage 가 아닌 zoo 라는 이름을 가짐. => 일반적으로 namedtuple 의 첫 번째 매개변수로 정의되는 이름은 변수 이름과 일치시키는 것이 좋음(가독성, 유지보수 용이) from collections import namedtuple zoo = namedtuple('cage', ['animal', 'price']) result = zoo('tiger', 3000) print(result.animal, result.price) tiger 3000 출력 def print_zoo(animal, price): print(animal, price) pri..
0) 예제1 - 튜플의 값들을 변수 하나씩 지정 data = (1, 2, 3) n1, n2, n3 = data[0], data[1], data[2] print(n1, n2, n3) 1 2 3 출력 - 언패킹을 사용하면 한 번에 가능 data = (1, 2, 3) n1, n2, n3 = data print(n1, n2, n3) 1 2 3 출력 - 리스트도 가능 data2 = [1, 2, 3] n11, n22, n33 = data2 print(n11, n22, n33) 1 2 3 출력 1) 예제2 - * 를 사용하면 low 에 1, high 에 6이 배정되고 others 에 [2, 3, 4, 5] 가 배정됨 scores = (1, 2, 3, 4, 5, 6) low, *others, high = scores ..
0. 원본 1. 프롬프트 in the deep ocean, very large cargo ship is full of many cars, even on the sides, no ground in sight, ultra realistic. 2. 결과
0. 실습 1) 설치 - MySQL 기반으로... pip3 install dbt pip3 install dbt-mysql 2) 프로젝트 시작 - 아래 작업을 해야 profiles.yml 파일이 생성됨. dbt init my_project - 동시에 폴더들도 생성됨 3) yml 파일 수정 vi ~/.dbt/profiles.yml my_project: target: dev outputs: dev: type: mysql server: 127.0.0.1 port: 3306 database: sql_study # optional, should be same as schema schema: dbt_test username: root password: driver: MySQL ODBC 8.0 ANSI Driver p..
0. 원본 1. 프롬프트 1) 도전 - he bottom of the electric car is visible from the front on the road, lying on its side, exposing the bottom, where two batteries are inserted like toy car. - 결과 2) 제현님 프롬프트 - A car lying on side. At the bottom of the car inside, 4 AA batteries are installed along the car body as if a toy car. On the street outside. Photography. Mute tone. - 결과 2. 느낀점 - 제현님 프롬프트도 한 번에 바로 누운 ..