yat  0.11.3pre
KolmogorovSmirnov.h
1 #ifndef _theplu_yat_statistics_kolmogorov_smirnov_
2 #define _theplu_yat_statistics_kolmogorov_smirnov_
3 
4 // $Id: KolmogorovSmirnov.h 3018 2013-04-04 04:46:38Z peter $
5 
6 /*
7  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2009, 2010, 2011, 2012, 2013 Peter Johansson
9 
10  This file is part of the yat library, http://dev.thep.lu.se/yat
11 
12  The yat library is free software; you can redistribute it and/or
13  modify it under the terms of the GNU General Public License as
14  published by the Free Software Foundation; either version 3 of the
15  License, or (at your option) any later version.
16 
17  The yat library is distributed in the hope that it will be useful,
18  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  General Public License for more details.
21 
22  You should have received a copy of the GNU General Public License
23  along with yat. If not, see <http://www.gnu.org/licenses/>.
24 */
25 
26 #include <boost/concept_check.hpp>
27 
28 #include <iosfwd>
29 #include <set>
30 #include <vector>
31 
32 namespace theplu {
33 namespace yat {
34 namespace statistics {
35 
40  {
41  public:
50  struct Element
51  {
55  Element(void);
56 
60  Element(double x, bool class_label, double w=1.0);
61 
65  double value;
66 
70  bool label;
71 
75  double weight;
76 
80  bool operator<(const Element& rhs) const;
81  };
82 
86  KolmogorovSmirnov(void);
87 
91  void add(double value, bool class_label, double weight=1.0);
92 
106  template <typename ForwardIterator>
107  void add(ForwardIterator first, ForwardIterator last);
108 
124  double p_value(void) const;
125 
135  double p_value(size_t perm) const;
136 
145  void remove(double value, bool class_label, double weight=1.0);
146 
150  void reset(void);
151 
158  double score(void) const;
159 
168  void shuffle(void);
169 
179  double signed_score(void) const;
180 
181  private:
182  void scores(std::vector<double>&) const;
183  // add weights to sum_w1 and sum_w2 respectively depending on
184  // label in element.
185  template <typename ForwardIterator>
186  void add_sum_w(ForwardIterator first, ForwardIterator last);
187 
188  mutable bool cached_;
189  mutable double score_;
190  typedef std::multiset<Element> data_w;
191  data_w data_;
192  double sum_w1_;
193  double sum_w2_;
194 
195  friend std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&);
196 
197  // using compiler generated copy and assignment
198  //KolmogorovSmirnov(const KolmogorovSmirnov&);
199  //KolmogorovSmirnov& operator=(const KolmogorovSmirnov&);
200  };
201 
207  std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&);
208 
209 
210  // template implementations
211 
212  template <typename ForwardIterator>
213  void KolmogorovSmirnov::add(ForwardIterator first, ForwardIterator last)
214  {
215  BOOST_CONCEPT_ASSERT((boost::ForwardIterator<ForwardIterator>));
216  typedef typename std::iterator_traits<ForwardIterator>::reference ref;
217  BOOST_CONCEPT_ASSERT((boost::Convertible<ref, KolmogorovSmirnov::Element>));
218  ForwardIterator iter(first);
219  typename data_w::const_iterator hint(data_.begin());
220  for ( ; iter!=last; ++iter)
221  if ((*iter).weight) // ignore data points with zero weight
222  hint = data_.insert(hint, *iter);
223  add_sum_w(first, last);
224  cached_=false;
225  }
226 
227 
228  template <typename ForwardIterator>
229  void KolmogorovSmirnov::add_sum_w(ForwardIterator first,
230  ForwardIterator last)
231  {
232  while (first!=last) {
233  if ((*first).label)
234  sum_w1_ += (*first).weight;
235  else
236  sum_w2_ += (*first).weight;
237  ++first;
238  }
239  }
240 
241 }}} // of namespace theplu yat statistics
242 
243 #endif

Generated on Sat May 24 2014 03:33:05 for yat by  doxygen 1.8.2