Releases: Moelf/FHist.jl
Releases · Moelf/FHist.jl
v0.11.7
FHist v0.11.7
Bug fixes
- fixed bug for
lookup
when the value coincides with the right edge of the last bin
Merged pull requests:
- feat: add Makie plot for Hist3D (#122) (@Beforerr)
- CompatHelper: add new compat entry for Plots in [weakdeps] at version 1, (keep existing compat) (#125) (@github-actions[bot])
- fix
lookup
when it lands on the right edge of the last bin (#129) (@Moelf)
Closed issues:
- lookup the right edge of a Hist (#128)
v0.11.6
FHist v0.11.6
Bug fix
- added missing
number * hist
method (before onlyhist * number
works)
Features:
effective_entries()
Merged pull requests:
v0.11.5
FHist v0.11.5
- [Makie] plotting, added
clamp_bincounts
andclamp_errors
for various plotting functions (barplot, stairs, errorbars
)
Merged pull requests:
v0.11.4
FHist v0.11.4
- [bug fix]: fixed error bar plotting for Makie (before it was
/2
for no good reason) - Makie error bar plot also switch between
sqrt()
topearson()
for bins that would have dipped below 0.
Merged pull requests:
v0.11.3
v0.11.2
v0.11.1
FHist v0.11.1
Bug fix
- fixed 1D and 2D plotting in Makie when histograms have non-uniform bins, thanks to @sfranchel
Merged pull requests:
- fix Makie recipe for uneven bin edges in 2D histograms (#105) (@sfranchel)
- fix uneven binning for 1D histogram in Makie recipe (#106) (@Moelf)
Closed issues:
v0.11.0
FHist v0.11.0
Breaking changes
- Histogram constructors are redesigned:
Hist1D(; <kwargs...>)
is used for creating empty histograms, andHist1D(<args>...; ...)
is used for one-shot histogram making - Histograms now only have 1 parametric type, making it easy to embed them into user structs
Improvements
- fixed
appened!()
- added new Quick Start documentation
- improved makie plotting examples
- Various Makie recipe fix
Merged pull requests:
- Main API change for v0.11 🎂 (#95) (@Moelf)
- Better (actually correct) error message for rebin (#103) (@tamasgal)
Closed issues:
- [RFC]
v0.11
breaking change to main API (#91)