In [1]:
import numpy as np
import pandas as pd
import matplotlib as mpl
import matplotlib.pyplot as plt
Error Bar¶
- 평균과 표준편자를 표시하여 데이터의 전체적인 경향을 요약하여 표시할 때 사용한다.
- 즉, 많은 라벨의 데이터 들이 있을 때 라벨마다의 데이터 분포를 표시할 때 사용한다.
In [5]:
x = np.linspace(0, 10, 50)
dy = 0.8
y = np.sin(x) + dy * np.random.randn(50)
plt.errorbar(x, y, yerr=dy, fmt='.k')
plt.xlabel("Label")
plt.ylabel("Distribution of Label")
Out[5]:
Text(0, 0.5, 'Distribution of Label')
In [ ]:
'2학년 2학기 > 데이터 사이언스 입문' 카테고리의 다른 글
[Visualization] Regend (0) | 2024.12.02 |
---|---|
[Visualization] Contour Plot(등고선) (0) | 2024.11.26 |
[Visualization] Scatter Plot(산점도) (0) | 2024.11.26 |
[Visualization] LinePlot (0) | 2024.11.26 |
.dt를 사용하는 이유 (0) | 2024.11.07 |