일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- string
- hive
- PostgreSQL
- google apps script
- Kotlin
- PANDAS
- PySpark
- GIT
- Python
- Tkinter
- gas
- SQL
- Excel
- array
- Google Excel
- Apache
- Java
- dataframe
- numpy
- django
- Redshift
- Github
- c#
- 파이썬
- list
- Mac
- matplotlib
- math
- Google Spreadsheet
- Today
- Total
목록Python (379)
달나라 노트
numpy에서 T attribute는 numpy array를 transpose해줍니다. 좀 직관적으로 이해하려면 흔히 말하는 행과 열을 바꿔준다는 느낌으로 받아들이면 될 것 같습니다. 아래 예시를 봅시다. import numpy as np arr_test = np.array( [ # 1차 array [1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 2차 array ] ) print(arr_test) print(arr_test.shape) arr_test_t = arr_test.T print(arr_test_t) print(arr_test_t.shape) -- Result [[1 2 3 4 5] [1 2 3 4 5] [1 2 3 4 5]] (3, 5) [[1 1 ..
numpy의 ndim attribute는 어떤 array가 몇차원인지를 알려줍니다. 아래는 ndim attribute를 사용한 예시입니다. import numpy as np arr_test = np.array( [1, 2, 3, 4, 5] # 1차 array ) print(arr_test) print(arr_test.ndim) -- Result [1 2 3 4 5] 1 import numpy as np arr_test = np.array( [ # 1차 array [1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 2차 array ] ) print(arr_test) print(arr_test.ndim) -- Result [[1 2 3 4 5] [1 2 3 4 5] ..
import numpy as np arr_test = np.array( [ # 1차 array [1, 2, 3, 4, 5], [1, 2, 3, 4, 5], [1, 2, 3, 4, 5] # 2차 array ] ) print(arr_test) print(arr_test.size) print(arr_test.shape) -- Result [[1 2 3 4 5] [1 2 3 4 5] [1 2 3 4 5]] 15 (3, 5) 위 예시를 봅시다. 2차원 array를 만들고 size와 shape attribute를 적용시켰습니다. size attribute는 array에 존재하는 모든 요소의 개수를 알려줍니다. 위 예시의 array는 5개의 요소를 가진 array가 총 3개 들어있는 2차원 array입니다. 이것을 ..
Python에서는 굉장히 간단하게 URL을 QR Code로 전환시켜주는 library가 있습니다. 이것을 한번 알아보죠. pip install qrcode 먼저 qrcode library를 설치해줍시다. import qrcode url = 'https://www.google.com' qr_img = qrcode.make(url) qr_img.save(stream='qr_code.png') 위 코드를 실행하면 qr_code.png라는 이미지 파일이 생성되며 그 파일은 아래와 같습니다. QR Code를 카메라로 비추면 www.google.com으로 이동됩니다. 굉장히 간단하죠? pip install pyqrcode 이번에는 pyqrcode라는 library를 이용해봅시다. pip install pypng 이..