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