메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
히스토그램 #
Matplotlib로 히스토그램을 그리는 방법.
import matplotlib.pyplot as plt
import numpy as np
from matplotlib import colors
from matplotlib.ticker import PercentFormatter
# Create a random number generator with a fixed seed for reproducibility
rng = np.random.default_rng(19680801)
데이터를 생성하고 간단한 히스토그램을 그립니다. #
1D 히스토그램을 생성하려면 단일 숫자 벡터만 필요합니다. 2D 히스토그램의 경우 두 번째 벡터가 필요합니다. 아래에서 둘 다 생성하고 각 벡터에 대한 히스토그램을 표시합니다.
N_points = 100000
n_bins = 20
# Generate two normal distributions
dist1 = rng.standard_normal(N_points)
dist2 = 0.4 * rng.standard_normal(N_points) + 5
fig, axs = plt.subplots(1, 2, sharey=True, tight_layout=True)
# We can set the number of bins with the *bins* keyword argument.
axs[0].hist(dist1, bins=n_bins)
axs[1].hist(dist2, bins=n_bins)
(array([2.0000e+00, 2.1000e+01, 5.1000e+01, 2.3500e+02, 7.8100e+02,
2.1000e+03, 4.5730e+03, 8.3390e+03, 1.2758e+04, 1.6363e+04,
1.7345e+04, 1.4923e+04, 1.0920e+04, 6.4830e+03, 3.1070e+03,
1.3810e+03, 4.5300e+02, 1.2200e+02, 3.6000e+01, 7.0000e+00]), array([3.20889223, 3.38336526, 3.55783829, 3.73231132, 3.90678435,
4.08125738, 4.25573041, 4.43020344, 4.60467647, 4.7791495 ,
4.95362253, 5.12809556, 5.30256859, 5.47704162, 5.65151465,
5.82598768, 6.00046071, 6.17493374, 6.34940677, 6.5238798 ,
6.69835283]), <BarContainer object of 20 artists>)
히스토그램 색상 업데이트 #
히스토그램 방법은 (무엇보다도) patches
객체를 반환합니다. 이렇게 하면 그려진 개체의 속성에 액세스할 수 있습니다. 이를 사용하여 히스토그램을 원하는 대로 편집할 수 있습니다. y 값을 기준으로 각 막대의 색상을 변경해 보겠습니다.
fig, axs = plt.subplots(1, 2, tight_layout=True)
# N is the count in each bin, bins is the lower-limit of the bin
N, bins, patches = axs[0].hist(dist1, bins=n_bins)
# We'll color code by height, but you could use any scalar
fracs = N / N.max()
# we need to normalize the data to 0..1 for the full range of the colormap
norm = colors.Normalize(fracs.min(), fracs.max())
# Now, we'll loop through our objects and set the color of each accordingly
for thisfrac, thispatch in zip(fracs, patches):
color = plt.cm.viridis(norm(thisfrac))
thispatch.set_facecolor(color)
# We can also normalize our inputs by the total number of counts
axs[1].hist(dist1, bins=n_bins, density=True)
# Now we format the y-axis to display percentage
axs[1].yaxis.set_major_formatter(PercentFormatter(xmax=1))
2D 히스토그램 그리기 #
2D 히스토그램을 그리려면 히스토그램의 각 축에 해당하는 동일한 길이의 두 벡터만 필요합니다.
히스토그램 사용자 지정 #
2D 히스토그램을 사용자 지정하는 것은 1D 경우와 유사하며 빈 크기 또는 색상 정규화와 같은 시각적 구성 요소를 제어할 수 있습니다.
fig, axs = plt.subplots(3, 1, figsize=(5, 15), sharex=True, sharey=True,
tight_layout=True)
# We can increase the number of bins on each axis
axs[0].hist2d(dist1, dist2, bins=40)
# As well as define normalization of the colors
axs[1].hist2d(dist1, dist2, bins=40, norm=colors.LogNorm())
# We can also define custom numbers of bins for each axis
axs[2].hist2d(dist1, dist2, bins=(80, 10), norm=colors.LogNorm())
plt.show()
참조
다음 함수, 메서드, 클래스 및 모듈의 사용이 이 예제에 표시됩니다.
스크립트의 총 실행 시간: ( 0분 2.108초)