fix doc example typo
[boost.git] / boost / accumulators / statistics / tail_variate_means.hpp
blobc4206f9ce454980f0956bd25a1594e151341790d
1 ///////////////////////////////////////////////////////////////////////////////
2 // tail_variate_means.hpp
3 //
4 // Copyright 2006 Daniel Egloff, Olivier Gygi. Distributed under the Boost
5 // Software License, Version 1.0. (See accompanying file
6 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 #ifndef BOOST_ACCUMULATORS_STATISTICS_TAIL_VARIATE_MEANS_HPP_DE_01_01_2006
9 #define BOOST_ACCUMULATORS_STATISTICS_TAIL_VARIATE_MEANS_HPP_DE_01_01_2006
11 #include <numeric>
12 #include <vector>
13 #include <limits>
14 #include <functional>
15 #include <sstream>
16 #include <stdexcept>
17 #include <boost/throw_exception.hpp>
18 #include <boost/parameter/keyword.hpp>
19 #include <boost/mpl/placeholders.hpp>
20 #include <boost/type_traits/is_same.hpp>
21 #include <boost/accumulators/framework/accumulator_base.hpp>
22 #include <boost/accumulators/framework/extractor.hpp>
23 #include <boost/accumulators/numeric/functional.hpp>
24 #include <boost/accumulators/framework/parameters/sample.hpp>
25 #include <boost/accumulators/statistics_fwd.hpp>
26 #include <boost/accumulators/statistics/tail.hpp>
27 #include <boost/accumulators/statistics/tail_variate.hpp>
28 #include <boost/accumulators/statistics/tail_mean.hpp>
29 #include <boost/accumulators/statistics/parameters/quantile_probability.hpp>
31 #ifdef _MSC_VER
32 # pragma warning(push)
33 # pragma warning(disable: 4127) // conditional expression is constant
34 #endif
36 namespace boost { namespace accumulators
39 namespace impl
41 /**
42 @brief Estimation of the absolute and relative tail variate means (for both left and right tails)
44 For all \f$j\f$-th variates associated to the \f$\lceil n(1-\alpha)\rceil\f$ largest samples (or the
45 \f$\lceil n(1-\alpha)\rceil\f$ smallest samples in case of the left tail), the absolute tail means
46 \f$\widehat{ATM}_{n,\alpha}(X, j)\f$ are computed and returned as an iterator range. Alternatively,
47 the relative tail means \f$\widehat{RTM}_{n,\alpha}(X, j)\f$ are returned, which are the absolute
48 tail means normalized with the (non-coherent) sample tail mean \f$\widehat{NCTM}_{n,\alpha}(X)\f$.
50 \f[
51 \widehat{ATM}_{n,\alpha}^{\mathrm{right}}(X, j) =
52 \frac{1}{\lceil n(1-\alpha) \rceil}
53 \sum_{i=\lceil \alpha n \rceil}^n \xi_{j,i}
54 \f]
56 \f[
57 \widehat{ATM}_{n,\alpha}^{\mathrm{left}}(X, j) =
58 \frac{1}{\lceil n\alpha \rceil}
59 \sum_{i=1}^{\lceil n\alpha \rceil} \xi_{j,i}
60 \f]
62 \f[
63 \widehat{RTM}_{n,\alpha}^{\mathrm{right}}(X, j) =
64 \frac{\sum_{i=\lceil n\alpha \rceil}^n \xi_{j,i}}
65 {\lceil n(1-\alpha)\rceil\widehat{NCTM}_{n,\alpha}^{\mathrm{right}}(X)}
66 \f]
68 \f[
69 \widehat{RTM}_{n,\alpha}^{\mathrm{left}}(X, j) =
70 \frac{\sum_{i=1}^{\lceil n\alpha \rceil} \xi_{j,i}}
71 {\lceil n\alpha\rceil\widehat{NCTM}_{n,\alpha}^{\mathrm{left}}(X)}
72 \f]
75 ///////////////////////////////////////////////////////////////////////////////
76 // tail_variate_means_impl
77 // by default: absolute tail_variate_means
78 template<typename Sample, typename Impl, typename LeftRight, typename VariateTag>
79 struct tail_variate_means_impl
80 : accumulator_base
82 typedef typename numeric::functional::average<Sample, std::size_t>::result_type float_type;
83 typedef std::vector<float_type> array_type;
84 // for boost::result_of
85 typedef iterator_range<typename array_type::iterator> result_type;
87 tail_variate_means_impl(dont_care) {}
89 template<typename Args>
90 result_type result(Args const &args) const
92 std::size_t cnt = count(args);
94 std::size_t n = static_cast<std::size_t>(
95 std::ceil(
96 cnt * ( ( is_same<LeftRight, left>::value ) ? args[quantile_probability] : 1. - args[quantile_probability] )
100 std::size_t num_variates = tail_variate(args).begin()->size();
102 this->tail_means_.clear();
103 this->tail_means_.resize(num_variates, Sample(0));
105 // If n is in a valid range, return result, otherwise return NaN or throw exception
106 if (n < static_cast<std::size_t>(tail(args).size()))
108 this->tail_means_ = std::accumulate(
109 tail_variate(args).begin()
110 , tail_variate(args).begin() + n
111 , this->tail_means_
112 , numeric::plus
115 float_type factor = n * ( (is_same<Impl, relative>::value) ? non_coherent_tail_mean(args) : 1. );
117 std::transform(
118 this->tail_means_.begin()
119 , this->tail_means_.end()
120 , this->tail_means_.begin()
121 , std::bind2nd(std::divides<float_type>(), factor)
124 else
126 if (std::numeric_limits<float_type>::has_quiet_NaN)
128 std::fill(
129 this->tail_means_.begin()
130 , this->tail_means_.end()
131 , std::numeric_limits<float_type>::quiet_NaN()
134 else
136 std::ostringstream msg;
137 msg << "index n = " << n << " is not in valid range [0, " << tail(args).size() << ")";
138 boost::throw_exception(std::runtime_error(msg.str()));
141 return make_iterator_range(this->tail_means_);
144 private:
146 mutable array_type tail_means_;
150 } // namespace impl
152 ///////////////////////////////////////////////////////////////////////////////
153 // tag::absolute_tail_variate_means
154 // tag::relative_tail_variate_means
156 namespace tag
158 template<typename LeftRight, typename VariateType, typename VariateTag>
159 struct absolute_tail_variate_means
160 : depends_on<count, non_coherent_tail_mean<LeftRight>, tail_variate<VariateType, VariateTag, LeftRight> >
162 typedef accumulators::impl::tail_variate_means_impl<mpl::_1, absolute, LeftRight, VariateTag> impl;
164 template<typename LeftRight, typename VariateType, typename VariateTag>
165 struct relative_tail_variate_means
166 : depends_on<count, non_coherent_tail_mean<LeftRight>, tail_variate<VariateType, VariateTag, LeftRight> >
168 typedef accumulators::impl::tail_variate_means_impl<mpl::_1, relative, LeftRight, VariateTag> impl;
170 struct abstract_absolute_tail_variate_means
171 : depends_on<>
174 struct abstract_relative_tail_variate_means
175 : depends_on<>
180 ///////////////////////////////////////////////////////////////////////////////
181 // extract::tail_variate_means
182 // extract::relative_tail_variate_means
184 namespace extract
186 extractor<tag::abstract_absolute_tail_variate_means> const tail_variate_means = {};
187 extractor<tag::abstract_relative_tail_variate_means> const relative_tail_variate_means = {};
190 using extract::tail_variate_means;
191 using extract::relative_tail_variate_means;
193 // tail_variate_means<LeftRight, VariateType, VariateTag>(absolute) -> absolute_tail_variate_means<LeftRight, VariateType, VariateTag>
194 template<typename LeftRight, typename VariateType, typename VariateTag>
195 struct as_feature<tag::tail_variate_means<LeftRight, VariateType, VariateTag>(absolute)>
197 typedef tag::absolute_tail_variate_means<LeftRight, VariateType, VariateTag> type;
200 // tail_variate_means<LeftRight, VariateType, VariateTag>(relative) ->relative_tail_variate_means<LeftRight, VariateType, VariateTag>
201 template<typename LeftRight, typename VariateType, typename VariateTag>
202 struct as_feature<tag::tail_variate_means<LeftRight, VariateType, VariateTag>(relative)>
204 typedef tag::relative_tail_variate_means<LeftRight, VariateType, VariateTag> type;
207 // Provides non-templatized extractor
208 template<typename LeftRight, typename VariateType, typename VariateTag>
209 struct feature_of<tag::absolute_tail_variate_means<LeftRight, VariateType, VariateTag> >
210 : feature_of<tag::abstract_absolute_tail_variate_means>
214 // Provides non-templatized extractor
215 template<typename LeftRight, typename VariateType, typename VariateTag>
216 struct feature_of<tag::relative_tail_variate_means<LeftRight, VariateType, VariateTag> >
217 : feature_of<tag::abstract_relative_tail_variate_means>
221 // So that absolute_tail_means can be automatically substituted
222 // with absolute_weighted_tail_means when the weight parameter is non-void.
223 template<typename LeftRight, typename VariateType, typename VariateTag>
224 struct as_weighted_feature<tag::absolute_tail_variate_means<LeftRight, VariateType, VariateTag> >
226 typedef tag::absolute_weighted_tail_variate_means<LeftRight, VariateType, VariateTag> type;
229 template<typename LeftRight, typename VariateType, typename VariateTag>
230 struct feature_of<tag::absolute_weighted_tail_variate_means<LeftRight, VariateType, VariateTag> >
231 : feature_of<tag::absolute_tail_variate_means<LeftRight, VariateType, VariateTag> >
235 // So that relative_tail_means can be automatically substituted
236 // with relative_weighted_tail_means when the weight parameter is non-void.
237 template<typename LeftRight, typename VariateType, typename VariateTag>
238 struct as_weighted_feature<tag::relative_tail_variate_means<LeftRight, VariateType, VariateTag> >
240 typedef tag::relative_weighted_tail_variate_means<LeftRight, VariateType, VariateTag> type;
243 template<typename LeftRight, typename VariateType, typename VariateTag>
244 struct feature_of<tag::relative_weighted_tail_variate_means<LeftRight, VariateType, VariateTag> >
245 : feature_of<tag::relative_tail_variate_means<LeftRight, VariateType, VariateTag> >
249 }} // namespace boost::accumulators
251 #ifdef _MSC_VER
252 # pragma warning(pop)
253 #endif
255 #endif