2012-11-27から1日間の記事一覧

scipy.stat.gaussian_kde()による確率密度推定

scipy.stats のインポート: >>> from scipy import statsGaussian kernel density estimation のためのクラスの定義: >>> class GaussianKernelDensityEstimation(object): """docstring for GaussianKernelDensityEstimation""" def __init__(self): self…