source: branches/0.4-stable/yat/statistics/AveragerPair.h @ 1291

Last change on this file since 1291 was 1291, checked in by Jari Häkkinen, 15 years ago

Fixes #361

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1#ifndef _theplu_yat_statistics_averagerpair_
2#define _theplu_yat_statistics_averagerpair_
3
4// $Id: AveragerPair.h 1291 2008-05-09 19:42:31Z jari $
5
6/*
7  Copyright (C) 2004, 2005 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér
9  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
10
11  This file is part of the yat library, http://trac.thep.lu.se/yat
12
13  The yat library is free software; you can redistribute it and/or
14  modify it under the terms of the GNU General Public License as
15  published by the Free Software Foundation; either version 2 of the
16  License, or (at your option) any later version.
17
18  The yat library is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  General Public License for more details.
22
23  You should have received a copy of the GNU General Public License
24  along with this program; if not, write to the Free Software
25  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26  02111-1307, USA.
27*/
28
29#include "Averager.h"
30
31#include "yat/utility/iterator_traits.h"
32
33#include <cmath>
34#include <utility>
35
36namespace theplu{
37namespace yat{
38namespace statistics{
39
40  ///
41  /// @brief Class for taking care of mean and covariance of two variables.
42  ///
43  /// @see Averager AveragerWeighted AveragerPairWeighted
44  ///
45  class AveragerPair
46  {
47  public:
48
49    ///
50    /// @brief The default constructor
51    ///
52    AveragerPair(void);
53
54    ///
55    /// Constructor taking sum of \a x , \a xx , \a y , \a yy , xy and
56    /// number of pair of values \a n
57    ///
58    //AveragerPair(const double x, const double xx, const double y,
59    //                    const double yy, const double xy, const unsigned long n)
60    //  : x_(Averager(x,xx,n)), y_(Averager(y,yy,n)), xy_(xy) {}
61
62    ///
63    /// The copy constructor
64    ///
65    AveragerPair(const AveragerPair&);
66
67    ///
68    /// Adding \a n pairs of data points with value \a x and \a y.
69    ///
70    void add(const double x, const double y, const long n=1);
71
72    /**
73       \brief Concordence correlation coefficient.
74
75       \f$ \frac{\sum_i (x_i-m_x)(y_i-m_y)}{\sum_i
76       (x_i-m_x)^2+\sum_i (y_i-m_y)^2 + n(m_x-m_y)^2} \f$
77       
78    */
79    double ccc(void) const;
80
81    /**
82       \f$ \frac{\sum_i (x_i-m_x)(y_i-m_y)}{\sqrt{\sum_i
83       (x_i-m_x)^2\sum_i (y_i-m_y)^2}} \f$
84       
85       \return %Pearson correlation coefficient.
86    */
87    double correlation(void) const;
88 
89    ///
90    /// Calculating covariance using
91    /// \f$ \frac{1}{N}\sum_i (x_i-m_x)(y_i-m_y) \f$,
92    /// where \f$ m \f$ is the mean.
93    ///
94    /// @return The covariance.
95    ///
96    double covariance(void) const;
97 
98    ///
99    /// @return The mean of xy.
100    ///
101    double mean_xy(void) const;
102
103    /**
104       \return Average squared deviation between x and y \f$
105       \frac{1}{N} \sum (x-y)^2 \f$
106    */
107    double msd(void) const;
108
109    ///
110    /// @return The number of pair of data points.
111    ///
112    long n(void) const;
113
114    ///
115    /// @brief Reset everything to zero
116    ///
117    void reset(void);
118
119    ///
120    /// @return The sum of xy.
121    ///
122    double sum_xy(void) const;
123
124    /**
125       \return Sum of squared deviation between x and y \f$
126       \sum (x-y)^2 \f$
127    */
128    double sum_squared_deviation(void) const;
129
130    ///
131    /// @return \f$ \sum_i (x_i-m_x)(y_i-m_y) \f$
132    ///
133    double sum_xy_centered(void) const;
134
135    ///
136    /// @return A const refencer to the averager object for x.
137    ///
138    const Averager& x_averager(void) const;
139
140    ///
141    /// @return A const reference to the averager object for y
142    ///
143    const Averager& y_averager(void) const;
144
145    ///
146    /// @brief The assigment operator
147    ///
148    const AveragerPair& operator=(const AveragerPair& a);
149
150    ///
151    /// Operator to add another Averager
152    ///
153    const AveragerPair& operator+=(const AveragerPair&);
154
155  private:
156    Averager x_;
157    Averager y_;
158    double  xy_;
159
160  };
161
162  /**
163     \brief adding data from two ranges to AveragerPair \a ap
164   */
165  template <class Iter1, class Iter2>
166  void add(AveragerPair& ap, Iter1 first1, Iter1 last1, Iter2 first2)
167  {
168    utility::check_iterator_is_unweighted(first1);
169    utility::check_iterator_is_unweighted(first2);
170    for ( ; first1 != last1; ++first1, ++first2)
171      ap.add(*first1, *first2);
172  }
173
174
175}}} // of namespace statistics, yat, and theplu
176
177#endif
Note: See TracBrowser for help on using the repository browser.