Skip to content

Releases: histogrammar/histogrammar-python

1.0.2

06 Sep 15:01
Compare
Choose a tag to compare

This version only changes the setup script so that the version on PyPI exactly matches the version in GitHub.

1.0.0

02 Sep 19:34
Compare
Choose a tag to compare

Histogrammar is a suite of data aggregation primitives designed for use in parallel processing. In the simplest case, you can use this to compute histograms, but the generality of the primitives allows much more.

See http://histogrammar.org for a complete introduction.

This Python implementation of Histogrammar adheres to version 1.0 of the specification and has been tested to guarantee compatibility with the Scala implementation. The test suite includes empty datasets, NaN/infinity handling, associativity tests, and numerical agreement at the level of one part in a trillion (double precision). Several common histogram types can be plotted in Matplotlib, PyROOT, and Bokeh with a single method call.

If Numpy or Pandas is available, histograms and other aggregators can be filled from arrays ten to a hundred times more quickly via Numpy commands, rather than Python for loops.

If PyROOT is available, histograms and other aggregators can be filled from ROOT TTrees hundreds of times more quickly by JIT-compiling a specialized C++ filler.

Histograms and other aggregators may also be converted into CUDA code for inclusion in a GPU workflow. And if PyCUDA is available, they can also be filled from Numpy arrays by JIT-compiling the CUDA.

0.8.0

15 Jul 18:11
Compare
Choose a tag to compare

Removed some primitives (which weren't associative and commutative) to be consistent with specification 0.8 and deeply tested against the specification code.