반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- matplotlib
- PANDAS
- array
- Kotlin
- django
- Mac
- SQL
- google apps script
- dataframe
- PySpark
- Google Spreadsheet
- Python
- Github
- Excel
- string
- gas
- hive
- PostgreSQL
- list
- Redshift
- Google Excel
- GIT
- math
- 파이썬
- Tkinter
- c#
- Apache
- numpy
- Java
Archives
- Today
- Total
목록imread (1)
달나라 노트

matplotlib는 굉장히 재미있는 기능들을 제공하는데 그 중에선 image 파일을 읽어서 그래프로 나타내주는 기능을 제공합니다. 제가 이전에 먹었던 녹차빙수 사진을 한번 matplotlib를 이용해서 그래프 위에 나타내보겠습니다. import matplotlib.pyplot as plt import matplotlib.image as img img_test = img.imread('greentea_ice_flakes.png') plt.imshow(img_test) plt.show() directory 구조는 위와 같습니다. pyplot.py 파일에 위 예시코드가 적혀있으며 greentea_ice_flakes.png 파일이 바로 제가 먹었던 녹차빙수 사진입니다. - img_test = img.imrea..
Python/Python matplotlib
2022. 1. 2. 03:09