일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 지도
- geopnadas
- kepler
- 파이썬
- 라이엇api
- 막대그래프
- map
- API
- riotapi
- 에러
- pipwin
- QGIS라벨링
- 시각화
- covid19
- matplotlib
- 인코등
- geopandas에러
- 오류
- Folium
- 공공데이터포털
- geopandas설치
- 라이엇
- r
- OSMnx
- 오픈API
- 마커클러스터
- 코로나
- kepler.gl
- covid
- Python
- Today
- Total
목록matplotlib (2)
Nerdy

1. Kepler.Gl https://github.com/keplergl/kepler.gl GitHub - keplergl/kepler.gl: Kepler.gl is a powerful open source geospatial analysis tool for large-scale data sets. Kepler.gl is a powerful open source geospatial analysis tool for large-scale data sets. - GitHub - keplergl/kepler.gl: Kepler.gl is a powerful open source geospatial analysis tool for large-scale d... github.com https://docs.keple..

레이블과 제목에 한글을 넣게 되면 한글깨짐 현상이 발생한다. 이 문제를 해결하기 위해서는 한글깨짐 방지 세팅이 필요하다. 먼저 산점도 그래프를 만들어본다. # 사용된 라이브러리 모듈 import numpy as np import matplotlib.pyplot as plt # 산점도 그래프 생성 np.random.seed(0) n = 30 x = np.random.rand(n) y = np.random.rand(n) plt.scatter(x, y) plt.title('test scatter') plt.xlabel('x') plt.ylabel('y') plt.grid(True) # 격자 표시 plt.show() # 결과 산점도 그래프 작성을 위한 파이썬 코드를 돌려보면 위의 이미지처럼 아주 잘 나온다. 하..