일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Google Spreadsheet
- 파이썬
- dataframe
- Java
- Apache
- matplotlib
- math
- Github
- string
- Tkinter
- GIT
- array
- PANDAS
- list
- numpy
- Excel
- Python
- Mac
- gas
- PostgreSQL
- google apps script
- Kotlin
- PySpark
- Redshift
- SQL
- django
- Google Excel
- c#
- hive
- Today
- Total
목록분류 전체보기 (832)
달나라 노트
Database에 존재하는 모든 schema와 각 schema에 대한 정보를 얻기 위해선 아래 쿼리를 사용하면 됩니다. select * from svv_all_schemas ; 그러면 결과로 database_name, schema_name, schema_owner 등 schema에 대한 다양한 정보를 얻을 수 있습니다.
matplotlib에서는 좌표평면 위에 다각형을 그릴 수 있는 기능도 제공합니다. 이는 좌표평면 위에 그려진 그래프와는 별개의 다각형을 그릴 수 있는 기능입니다. Syntax plt.Polygon( xy=list_poly_coords, # 다각형 꼭지점 좌표 alpha=1, # 투명도 fill=True, # True -> 채우기, False -> 채우기 안함 color='forestgreen', # 종합적인 색상 -> 테두리 색상과 채우기 색상 동시에 결정 facecolor='red', # 채우기 색상 edgecolor='black', # 테두리 색상 linestyle='solid', # 테두리 스타일 {'-', '--', '-.', ':', '', (offset, on-off-seq), ...} lin..
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..