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