1 | #ifndef _theplu_yat_regression_naive_ |
---|
2 | #define _theplu_yat_regression_naive_ |
---|
3 | |
---|
4 | // $Id: Naive.h 703 2006-12-18 00:47:44Z jari $ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) The authors contributing to this file. |
---|
8 | |
---|
9 | This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
10 | |
---|
11 | The yat library is free software; you can redistribute it and/or |
---|
12 | modify it under the terms of the GNU General Public License as |
---|
13 | published by the Free Software Foundation; either version 2 of the |
---|
14 | License, or (at your option) any later version. |
---|
15 | |
---|
16 | The yat library is distributed in the hope that it will be useful, |
---|
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
19 | General Public License for more details. |
---|
20 | |
---|
21 | You should have received a copy of the GNU General Public License |
---|
22 | along with this program; if not, write to the Free Software |
---|
23 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
24 | 02111-1307, USA. |
---|
25 | */ |
---|
26 | |
---|
27 | #include "OneDimensional.h" |
---|
28 | |
---|
29 | #include <iostream> |
---|
30 | #include <utility> |
---|
31 | |
---|
32 | namespace theplu { |
---|
33 | namespace yat { |
---|
34 | namespace utility { |
---|
35 | class vector; |
---|
36 | } |
---|
37 | namespace regression { |
---|
38 | |
---|
39 | /// |
---|
40 | /// @bief naive fitting. |
---|
41 | /// |
---|
42 | /// @todo document |
---|
43 | /// |
---|
44 | class Naive : public OneDimensional |
---|
45 | { |
---|
46 | |
---|
47 | public: |
---|
48 | /// |
---|
49 | /// @brief The default constructor |
---|
50 | /// |
---|
51 | Naive(void); |
---|
52 | |
---|
53 | /// |
---|
54 | /// @brief The destructor |
---|
55 | /// |
---|
56 | virtual ~Naive(void); |
---|
57 | |
---|
58 | /// |
---|
59 | /// This function computes the best-fit for the naive model \f$ y |
---|
60 | /// = m \f$ from vectors \a x and \a y, by minimizing \f$ |
---|
61 | /// \sum{(y_i-m)^2} \f$. This function is the same as using the |
---|
62 | /// weighted version with unity weights. |
---|
63 | /// |
---|
64 | void fit(const utility::vector& x, const utility::vector& y); |
---|
65 | |
---|
66 | /// |
---|
67 | /// @brief Mean Squared Error |
---|
68 | /// |
---|
69 | inline double mse(void) const { return mse_; } |
---|
70 | |
---|
71 | /// |
---|
72 | /// Function predicting value using the naive model. |
---|
73 | /// |
---|
74 | double predict(const double x) const; |
---|
75 | |
---|
76 | /// |
---|
77 | /// @return standard error |
---|
78 | /// |
---|
79 | double standard_error(const double x) const; |
---|
80 | |
---|
81 | private: |
---|
82 | /// |
---|
83 | /// @brief The copy constructor (not implemented). |
---|
84 | /// |
---|
85 | Naive(const Naive&); |
---|
86 | |
---|
87 | double mse_; |
---|
88 | }; |
---|
89 | |
---|
90 | }}} // of namespaces regression, yat, and theplu |
---|
91 | |
---|
92 | #endif |
---|