본문 바로가기

카테고리 없음

Numpy, 히스토그램

개요

  데이터로부터 히스토그램(값 기준 카운팅)을 구하는 법, 도식하는 법 메모

 

 

내용

 

import numpy as np

import matplotlib.pyplot as plt

 

 

#히스토그램 배열 구하기

bins = np.arange(0, 256, 1) #[0, 1, ... , 255]

hist, bins = np.histogram(data, bins)

 

 

#히스토그램 그리기

bins = np.arange(0, 256, 1) #[0, 1, ... , 255]

plt.hist(data, bins=bins)