Changeset 77
- Timestamp:
- May 4, 2004, 12:05:34 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ROC.h
r69 r77 18 18 namespace cpptools { 19 19 /// 20 /// Class for ROC .20 /// Class for ROC (Reciever Operating Characteristic). 21 21 /// 22 22 class ROC … … 29 29 ROC(const gslapi::vector&, const gslapi::vector&); 30 30 31 /// 32 /// @return the area under the ROC curve31 /// Equivalent to the Mann-Whitney score, but normalized to be 32 /// between zero and one. @return the area under the ROC curve 33 33 /// 34 34 double ROC::area(void); … … 45 45 ///non-zero amount. If the smallest group size is larger than minimum_size 46 46 ///(default = 10), then P is calculated using a normal approximation. 47 /// @return the p-value47 /// @return the one-sided p-value 48 48 /// 49 49 double ROC::get_p(const double); 50 50 51 51 /// 52 /// Changes minimum_size , i.e. the border between exact and53 /// approximati ve method for calculating the p-value.52 /// Changes minimum_size , i.e. the threshold when a normal 53 /// approximation is used for the p-value calculation. 54 54 /// 55 55 inline void minimum_size(const u_int minimum_size) {minimum_size_ = minimum_size; } … … 61 61 /// 62 62 /// 63 /// 63 /// Implemented as in MatLab 12.1 64 64 /// @return the p-value 65 65 /// 66 66 double ROC::get_p_approx(const double); 67 67 68 ///68 /// 69 69 /// @return the p-value 70 70 ///
Note: See TracChangeset
for help on using the changeset viewer.