guide_fill_weighted_profile.cpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Copyright 2019 Hans Dembinski
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt
  5. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //[ guide_fill_weighted_profile
  7. #include <boost/format.hpp>
  8. #include <boost/histogram.hpp>
  9. #include <cassert>
  10. #include <iostream>
  11. #include <sstream>
  12. int main() {
  13. using namespace boost::histogram;
  14. using namespace boost::histogram::literals; // _c suffix creates compile-time numbers
  15. // make 2D weighted profile
  16. auto h = make_weighted_profile(axis::integer<>(0, 2), axis::integer<>(0, 2));
  17. // The mean is computed from the values marked with the sample() helper function.
  18. // Weights can be passed as well. The `sample` and `weight` arguments can appear in any
  19. // order, but they must be the first or last arguments.
  20. h(0, 0, sample(1)); // sample goes to cell (0, 0); weight is 1
  21. h(0, 0, sample(2), weight(3)); // sample goes to cell (0, 0); weight is 3
  22. h(1, 0, sample(3)); // sample goes to cell (1, 0); weight is 1
  23. h(1, 0, sample(4)); // sample goes to cell (1, 0); weight is 1
  24. h(0, 1, sample(5)); // sample goes to cell (1, 0); weight is 1
  25. h(0, 1, sample(6)); // sample goes to cell (1, 0); weight is 1
  26. h(1, 1, weight(4), sample(7)); // sample goes to cell (1, 1); weight is 4
  27. h(weight(5), sample(8), 1, 1); // sample goes to cell (1, 1); weight is 5
  28. std::ostringstream os;
  29. for (auto&& x : indexed(h)) {
  30. const auto i = x.index(0_c);
  31. const auto j = x.index(1_c);
  32. const auto m = x->value(); // weighted mean
  33. const auto v = x->variance(); // estimated variance of weighted mean
  34. os << boost::format("index %i,%i mean %.1f variance %.1f\n") % i % j % m % v;
  35. }
  36. std::cout << os.str() << std::flush;
  37. assert(os.str() == "index 0,0 mean 1.8 variance 0.5\n"
  38. "index 1,0 mean 3.5 variance 0.5\n"
  39. "index 0,1 mean 5.5 variance 0.5\n"
  40. "index 1,1 mean 7.6 variance 0.5\n");
  41. }
  42. //]