Plots plotting
using FHist, Statistics, Plots
Hist1D
Let's generate three dummy histograms sampled from three different distributions:
unit Gaussian with 1000 points
unit Gaussian with 10000 points
unit Gaussians with 1000 points and a mean of 0.5
begin
h1 = Hist1D(randn(10^3); binedges = -2:0.3:2)
h2 = Hist1D(randn(10^4); binedges = -2:0.3:2)
h3 = Hist1D(randn(10^3) .+ 0.5; binedges = -2:0.3:2)
end
- edges: -2.0:0.3:1.9
- bin counts: [14.0, 19.0, 30.0, 51.0, 65.0, 88.0, 103.0, 108.0, 120.0, 114.0, 88.0, 61.0, 60.0]
- maximum count: 120.0
- total count: 921.0
begin
Plots.plot(h1; size=(600, 500), legend=:topleft)
Plots.plot!(h3)
end
Hist2D
h2d = Hist2D((randn(10000), randn(10000)));
p2d = plot(h2d)