반응형
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
- Mac
- string
- Google Spreadsheet
- GIT
- numpy
- Google Excel
- Python
- Java
- array
- Apache
- Kotlin
- matplotlib
- Excel
- django
- SQL
- PostgreSQL
- c#
- gas
- list
- hive
- Redshift
- Tkinter
- PySpark
- math
- dataframe
- google apps script
- PANDAS
- 파이썬
- Github
Archives
- Today
- Total
목록yaxis.set_visible (1)
달나라 노트

x축을 숨기거나 y축을 숨기거나 아니면 그냥 좌표평면 자체를 숨겨버리는 기능을 알아봅시다. import matplotlib.pyplot as plt sub_plots = plt.subplots(2, 2) fig = sub_plots[0] graph = sub_plots[1] fig.suptitle('Axis off test') fig.tight_layout(pad=3) graph[0][0].set_title('original') graph[0][1].set_title('x axis off') graph[0][1].xaxis.set_visible(False) graph[1][0].set_title('y axis off') graph[1][0].yaxis.set_visible(False) graph[1][1..
Python/Python matplotlib
2024. 3. 29. 19:48