반응형
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 | 31 |
Tags
- 파이썬
- django
- string
- PostgreSQL
- gas
- Apache
- array
- Redshift
- Kotlin
- PANDAS
- hive
- Google Spreadsheet
- numpy
- c#
- Python
- Mac
- google apps script
- Excel
- GIT
- Google Excel
- SQL
- Github
- Java
- math
- list
- dataframe
- PySpark
- Tkinter
- matplotlib
Archives
- Today
- Total
목록Animation (1)
달나라 노트
Python matplotlib : animation FuncAnimation (matplotlib animation, 그래프 애니메이션으로 그리기, graph animation)
matplotlib는 단순히 결과 그래프를 보여주는 것 뿐 아니라 그래프가 그려지는 과정을 animation으로 나타내주는 기능을 제공합니다. 이 기능을 사용하기 위한 기본적인 사항들을 이해하기 위해선 코드 단위별로 살펴봐야할 것이 있으므로, 먼저 전체 코드를 본 후에 각 부분이 어떤 것을 의미하고 왜 그렇게 쓰였는지 이해해봅시다. import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation fig = plt.figure() line = plt.plot([], [], color='skyblue', marker='o', markerfacecolor='blue', markersize=6)[0] plt.xlim(0, 6) plt...
Python/Python matplotlib
2022. 1. 16. 01:28