- Timestamp:
- Mar 5, 2007, 8:44:03 PM (16 years ago)
- Location:
- trunk/yat
- Files:
-
- 11 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/FeatureSelectorIR.cc
r747 r781 29 29 30 30 #include <algorithm> 31 #include <cassert> 31 32 32 33 namespace theplu { -
trunk/yat/classifier/FeatureSelectorRandom.cc
r680 r781 29 29 30 30 #include <algorithm> 31 #include <cassert> 31 32 32 33 namespace theplu { -
trunk/yat/classifier/GaussianKernelFunction.cc
r680 r781 27 27 #include "DataLookupWeighted1D.h" 28 28 29 #include <cassert> 29 30 #include <math.h> 30 31 -
trunk/yat/classifier/InputRanker.cc
r779 r781 31 31 #include "yat/utility/stl_utility.h" 32 32 33 #include <cassert> 33 34 #include <cmath> 34 35 #include <functional> -
trunk/yat/classifier/MatrixLookup.cc
r720 r781 29 29 #endif 30 30 31 #include <cassert> 31 32 #include <fstream> 32 33 -
trunk/yat/classifier/MatrixLookupWeighted.cc
r774 r781 29 29 #endif 30 30 31 #include <cassert> 31 32 #include <fstream> 32 33 -
trunk/yat/classifier/PolynomialKernelFunction.cc
r680 r781 27 27 #include "yat/statistics/AveragerPairWeighted.h" 28 28 29 #include <cassert> 29 30 #include <cmath> 30 31 -
trunk/yat/statistics/AveragerPairWeighted.cc
r772 r781 27 27 #include "yat/classifier/DataLookup1D.h" 28 28 #include "yat/classifier/DataLookupWeighted1D.h" 29 30 #include <cassert> 29 31 30 32 namespace theplu { -
trunk/yat/statistics/Makefile.am
r779 r781 27 27 AveragerWeighted.cc AveragerPairWeighted.cc Distance.cc \ 28 28 Euclidean.cc Fisher.cc FoldChange.cc Histogram.cc Pearson.cc \ 29 PearsonCorrelation.cc PearsonDistance.cc ROC.cc ROC score.cc \29 PearsonCorrelation.cc PearsonDistance.cc ROC.cc ROCScore.cc \ 30 30 SAMScore.cc Score.cc SNR.cc tScore.cc tTest.cc \ 31 31 utility.cc WilcoxonFoldChange.cc … … 37 37 Fisher.h \ 38 38 FoldChange.h Histogram.h Pearson.h PearsonCorrelation.h \ 39 PearsonDistance.h ROC.h ROC score.h \39 PearsonDistance.h ROC.h ROCScore.h \ 40 40 SAMScore.h Score.h SNR.h tScore.h tTest.h \ 41 41 utility.h WilcoxonFoldChange.h -
trunk/yat/statistics/ROC.cc
r779 r781 30 30 #include <gsl/gsl_cdf.h> 31 31 32 #include <cassert> 32 33 #include <cmath> 33 34 #include <utility> -
trunk/yat/statistics/ROCScore.cc
r779 r781 22 22 */ 23 23 24 #include "ROC score.h"24 #include "ROCScore.h" 25 25 #include "yat/classifier/DataLookupWeighted1D.h" 26 26 #include "yat/classifier/Target.h" … … 37 37 namespace statistics { 38 38 39 ROC score::ROCscore(bool absolute)39 ROCScore::ROCScore(bool absolute) 40 40 : Score(absolute) 41 41 { 42 42 } 43 43 44 double ROC score::score(const classifier::Target& target,44 double ROCScore::score(const classifier::Target& target, 45 45 const utility::vector& value) const 46 46 { … … 57 57 58 58 59 double ROC score::score(const classifier::Target& target,59 double ROCScore::score(const classifier::Target& target, 60 60 const classifier::DataLookupWeighted1D& value) const 61 61 { … … 73 73 74 74 75 double ROC score::score(const classifier::Target& target,75 double ROCScore::score(const classifier::Target& target, 76 76 const utility::vector& value, 77 77 const utility::vector& weight) const … … 91 91 92 92 double 93 ROC score::score(const MultiMap& m) const93 ROCScore::score(const MultiMap& m) const 94 94 { 95 95 double area=0; -
trunk/yat/statistics/ROCScore.h
r779 r781 44 44 /// @brief Class for Reciever Operating Characteristic. 45 45 /// 46 class ROC score : public Score46 class ROCScore : public Score 47 47 { 48 48 … … 51 51 /// 52 52 /// 53 ROC score(bool absolute=true);53 ROCScore(bool absolute=true); 54 54 55 55 /// Function taking \a value, \a target (+1 or -1) and vector -
trunk/yat/statistics/SNR.cc
r779 r781 28 28 #include "yat/classifier/Target.h" 29 29 #include "yat/utility/vector.h" 30 31 #include <cassert> 30 32 31 33 namespace theplu {
Note: See TracChangeset
for help on using the changeset viewer.