Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.13 KB

File metadata and controls

37 lines (26 loc) · 1.13 KB

⚠️ DEPRECATED

This package has been deprecated in favor of hbw.

PyPI version License: MIT

Why hbw?

hbw provides everything hessband does, plus:

  • Multivariate support: KDE and Nadaraya-Watson for multivariate data
  • More kernels: 6 kernels (gaussian, epanechnikov, uniform, biweight, triweight, cosine) vs 2
  • Numba acceleration: 16-49× faster than pure NumPy implementations
  • Large data handling: Automatic subsampling via max_n parameter
  • Active development: Regular updates and improvements

Migration

pip uninstall hessband
pip install hbw
# Old (hessband)
from hessband import select_kde_bandwidth, select_nw_bandwidth

# New (hbw)
from hbw import kde_bandwidth, nw_bandwidth

Links