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
- 스프링 부트3
- 완주하지못한선수
- conda remove
- 컬렉션 프레임웍
- 알고리즘
- WinError5
- GIT
- 차원증가
- 프로그래머스
- Java
- Python
- 파이썬
- 자바 열거형
- 셀레니움
- 오라클
- 머신러닝
- 스프링 부트
- 쓰레드 풀
- REST API
- 사이킷런
- Selenium
- URI 원칙
- oracle
- db
- openai
- 컬렉션 인터페이스
- 자바 로그 레벨
- 사이킷런 회귀
- h2 데이타베이스
- streamlit
Archives
- Today
- Total
목록matplotlib (1)
노트 :
Matplotlib
Matplotlib는 데이터 시각화를 위한 파이썬 라이브러리이다. Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy things easy and hard things possible. Matplotlib를 이용하여 그래프와 이미지를 표시해보자. 1). Sin & Cos 그래프 import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 6, 0.1) y1 = np.sin(x) y2 = np.cos(x) plt.plot(x, y1, label='sin') plt..
Python
2023. 3. 27. 14:23