mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-09 23:04:07 +00:00
* Travis uses b2 and codecov now * replacing boost::multiprecision with custom implementation to avoid the dependency * improved axis implementation: `update` is now a normal method * introduced use_default tag type to set defaults * whitespace fixes and doc update
54 lines
1.7 KiB
C++
54 lines
1.7 KiB
C++
// Copyright 2019 Hans Dembinski
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt
|
|
// or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//[ guide_fill_profile
|
|
|
|
#include <boost/format.hpp>
|
|
#include <boost/histogram.hpp>
|
|
#include <cassert>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <utility>
|
|
|
|
int main() {
|
|
using namespace boost::histogram;
|
|
|
|
// make a profile, it computes the mean of the samples in each histogram cell
|
|
auto h = make_profile(axis::regular<>(3, 0.0, 1.0));
|
|
|
|
// mean is computed from the values marked with the sample() helper function
|
|
h(0.10, sample(2.5)); // 2.5 goes to bin 0
|
|
h(0.25, sample(3.5)); // 3.5 goes to bin 0
|
|
h(0.45, sample(1.2)); // 1.2 goes to bin 1
|
|
h(sample(3.4), 0.51); // 3.4 goes to bin 1, sample be at the front
|
|
|
|
// fills from tuples are also supported, 1.3 and 1.9 go to bin 2
|
|
auto xs1 = std::make_tuple(0.81, sample(1.3));
|
|
auto xs2 = std::make_tuple(0.86, sample(1.9));
|
|
h(xs1);
|
|
h(xs2);
|
|
|
|
// builtin accumulators have methods to access their state
|
|
std::ostringstream os;
|
|
for (auto x : indexed(h)) {
|
|
// use `.` to access methods of accessor, like `index()`
|
|
// use `->` to access methods of accumulator
|
|
const auto i = x.index();
|
|
const auto n = x->count(); // how many samples are in this bin
|
|
const auto vl = x->value(); // mean value
|
|
const auto vr = x->variance(); // estimated variance of the mean value
|
|
os << boost::format("bin %i count %i value %.1f variance %.1f\n") % i % n % vl % vr;
|
|
}
|
|
|
|
std::cout << os.str() << std::flush;
|
|
|
|
assert(os.str() == "bin 0 count 2 value 3.0 variance 0.5\n"
|
|
"bin 1 count 2 value 2.3 variance 2.4\n"
|
|
"bin 2 count 2 value 1.6 variance 0.2\n");
|
|
}
|
|
|
|
//]
|