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
- request Method
- linalg.solve()
- 빅분기
- array
- DEEPLEARNING
- Heapreplace
- 필답형
- namedTuple
- Python
- np.save()
- os.path.join
- 빅데이터
- matplotlib
- Collections
- Math Function
- BASIC
- 작업형
- np.load()
- numpy
- np.savetxt()
- set_index
- coding
- 비가변매개변수
- kaggle
- 실기
- deg2rad
- 빅데이터분석기사
- heapmerge
- list
- 가변매개변수
Archives
- Today
- Total
목록matplotlib.pyplot (1)
맞춤형 플랫폼 개발 도전기 (웹개발, 딥러닝, 블록체인)

기본적으로 matplotlib 모듈을 사용한다. import matplotlib.pyplot as plt 해서 사용하는 것이 일반적이다. (참고 : %matplotlib inlined의 역할을 모르는 사람들이 간혹 있는 것 같아서 참고사항으로 넣자면, %matplotlib inlined은 jupyter notebook 일 경우 바로 그려질 수 있게 하는 notebook 기능이다) 보통 그래프 등을 생성할때 x 축 좌표를 균등하게 만들고 싶을때 사용하는 것이 np.linspace(start, end, num) np.linspace(0, 10, 11) 일 경우에는 0부터 10까지 균등한 간격으로 11개의 점을 찍는 것 이 데이터들을 가지고 y값까지 지정한 후 plt.plot( x, y ), plt.scatt..
카테고리 없음
2021. 10. 31. 10:52