Skip to main content

Fast Averaged Shifted Histogram module.

Project description

FastASH

Fast Averaged Shifted Histograms.

Density estimation which approximate a triangular Kernel Density Estimation (KDE. Cython inside.

Getting Started

Example usage:

For a standard PDF


    from scipy import stats
    import numpy as np
    from matplotlib import pyplot as plt
    from fastash import ASH

    n = 10**5
    d = 3
    mean = np.zeros(d)
    cov = np.diag(np.ones(d))
    X = stats.multivariate_normal.rvs(mean=mean, cov=cov, size=n)

    ash = ASH(q=100)
    ash.fit(X)

    Y = np.zeros((300, d))
    Y[:,0] = np.linspace(-4,4,300)
    f = ash.predict(Y)

    plt.plot(Y[:,0], stats.multivariate_normal.pdf(Y, mean=mean, cov=cov), label='exact')
    plt.plot(Y[:,0], f, label='FastASH')
    plt.legend()
    plt.show()

## help for packaging

script files are provided and based on this tutorial :
https://levelup.gitconnected.com/how-to-deploy-a-cython-package-to-pypi-8217a6581f09



Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastash-0.0.9.tar.gz (69.2 kB view hashes)

Uploaded Source

Built Distribution

fastash-0.0.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (50.5 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page