yat  0.16.4pre
KolmogorovSmirnov.h
1 #ifndef _theplu_yat_statistics_kolmogorov_smirnov_
2 #define _theplu_yat_statistics_kolmogorov_smirnov_
3 
4 // $Id: KolmogorovSmirnov.h 3550 2017-01-03 05:41:02Z peter $
5 
6 /*
7  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2009, 2010, 2011, 2012, 2013, 2016 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 "yat/utility/concept_check.h"
27 
28 #include <boost/concept_check.hpp>
29 #include <boost/iterator/iterator_concepts.hpp>
30 
31 #include <iosfwd>
32 #include <set>
33 #include <vector>
34 
35 namespace theplu {
36 namespace yat {
37 namespace statistics {
38 
43  {
44  public:
53  struct Element
54  {
58  Element(void);
59 
63  Element(double x, bool class_label, double w=1.0);
64 
68  double value;
69 
73  bool label;
74 
78  double weight;
79 
83  bool operator<(const Element& rhs) const;
84  };
85 
89  KolmogorovSmirnov(void);
90 
94  void add(double value, bool class_label, double weight=1.0);
95 
112  template <typename ForwardIterator>
113  void add(ForwardIterator first, ForwardIterator last);
114 
130  double p_value(void) const;
131 
141  double p_value(size_t perm) const;
142 
151  void remove(double value, bool class_label, double weight=1.0);
152 
156  void reset(void);
157 
164  double score(void) const;
165 
174  void shuffle(void);
175 
185  double signed_score(void) const;
186 
187  private:
188  void scores(std::vector<double>&) const;
189  // add weights to sum_w1 and sum_w2 respectively depending on
190  // label in element.
191  template <typename ForwardIterator>
192  void add_sum_w(ForwardIterator first, ForwardIterator last);
193 
194  mutable bool cached_;
195  mutable double score_;
196  typedef std::multiset<Element> data_w;
197  data_w data_;
198  double sum_w1_;
199  double sum_w2_;
200 
201  friend std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&);
202 
203  // using compiler generated copy and assignment
204  //KolmogorovSmirnov(const KolmogorovSmirnov&);
205  //KolmogorovSmirnov& operator=(const KolmogorovSmirnov&);
206  };
207 
213  std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&);
214 
215 
216  // template implementations
217 
218  template <typename ForwardIterator>
219  void KolmogorovSmirnov::add(ForwardIterator first, ForwardIterator last)
220  {
221  BOOST_CONCEPT_ASSERT((boost_concepts::ForwardTraversal<ForwardIterator>));
222  BOOST_CONCEPT_ASSERT((boost_concepts::ReadableIterator<ForwardIterator>));
223  ForwardIterator iter(first);
224  typename data_w::const_iterator hint(data_.begin());
225  for ( ; iter!=last; ++iter)
226  if ((*iter).weight) // ignore data points with zero weight
227  hint = data_.insert(hint, *iter);
228  add_sum_w(first, last);
229  cached_=false;
230  }
231 
232 
233  template <typename ForwardIterator>
234  void KolmogorovSmirnov::add_sum_w(ForwardIterator first,
235  ForwardIterator last)
236  {
237  while (first!=last) {
238  if ((*first).label)
239  sum_w1_ += (*first).weight;
240  else
241  sum_w2_ += (*first).weight;
242  ++first;
243  }
244  }
245 
246 }}} // of namespace theplu yat statistics
247 
248 #endif
Definition: KolmogorovSmirnov.h:53
void shuffle(void)
shuffle class labels
bool label
Definition: KolmogorovSmirnov.h:73
The Department of Theoretical Physics namespace as we define it.
Kolmogorov Smirnov Test.
Definition: KolmogorovSmirnov.h:42
void add(double value, bool class_label, double weight=1.0)
add a value
double weight
Definition: KolmogorovSmirnov.h:78
void reset(void)
resets everything to zero
double value
data value
Definition: KolmogorovSmirnov.h:68
double score(void) const
Kolmogorov Smirnov statistic.
double p_value(void) const
Large-Sample Approximation.

Generated on Thu Dec 12 2019 03:12:08 for yat by  doxygen 1.8.11