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
- 컬렉션 프레임웍
- Java
- oracle
- 차원증가
- Selenium
- 머신러닝
- 쓰레드 풀
- URI 원칙
- streamlit
- 셀레니움
- 자바 로그 레벨
- 컬렉션 인터페이스
- conda remove
- GIT
- 프로그래머스
- 오라클
- openai
- Python
- WinError5
- 스프링 부트3
- 스프링 부트
- 파이썬
- 사이킷런 회귀
- 알고리즘
- 사이킷런
- REST API
- h2 데이타베이스
- 완주하지못한선수
- 자바 열거형
- db
Archives
- Today
- Total
노트 :
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.plot(x, y2, label='cos')
plt.xlabel('X axis')
plt.ylabel('Y axis')
plt.title('sin&cos')
plt.legend()
plt.show()
2) 라인플롯
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 100, 2)
y = x * 2
plt.plot(x, y)
plt.show()
3) 히스토그램
from numpy.random import normal, rand
import matplotlib.pyplot as plt
x = normal(size=100)
plt.hist(x, bins=20)
plt.show()
4) 산점도
from numpy.random import rand
import matplotlib.pyplot as plt
x = rand(100)
y = rand(100)
plt.scatter(x, y)
plt.show()
5) 3D 플롯
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.gca(projection = '3d')
x = np.arange(0, 6, 0.15)
y = np.arange(0, 6, 0.15)
x, y = np.meshgrid(x, y)
r = np.sqrt(x**2 + y**2)
z = np.sin(r)
surf = ax.plot_surface(x, y, z, rstride = 1, cmap = cm.coolwarm)
plt.show()
6) 이미지
import matplotlib.pyplot as plt
img = imread('img.png')
plt.imshow(img)
plt.xlabel('x axis')
plt.ylabel('y axis')
plt.title('landscape')
plt.show()
이외에도 다양한 시각화가 가능하다.
source: matplolib.org, wikipedia
'Python' 카테고리의 다른 글
Selenium - 크롬드라이버 버전 오류 (0) | 2023.03.29 |
---|---|
Random 모듈 (0) | 2023.03.28 |
주소록 프로젝트 (0) | 2023.03.25 |
제너레이터(Generator) (0) | 2023.02.23 |
타입 힌트(Type Hint) (0) | 2023.02.23 |