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 |
Tags
- openai
- 알고리즘
- 스프링 부트3
- 완주하지못한선수
- db
- 자바 열거형
- 사이킷런 회귀
- streamlit
- 사이킷런
- 스프링 부트
- URI 원칙
- WinError5
- 컬렉션 프레임웍
- 셀레니움
- GIT
- 차원증가
- 오라클
- 자바 로그 레벨
- REST API
- 쓰레드 풀
- conda remove
- h2 데이타베이스
- Java
- 컬렉션 인터페이스
- 파이썬
- oracle
- Selenium
- 머신러닝
- Python
- 프로그래머스
Archives
- Today
- Total
목록라인플롯 (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