13 inline bool is_hoeffding(std::string method)
15 return (method ==
"hoeffding") | (method ==
"hoeffd") | (method ==
"d");
17 inline bool is_kendall(std::string method)
19 return (method ==
"kendall") | (method ==
"ktau") | (method ==
"tau");
21 inline bool is_pearson(std::string method)
23 return (method ==
"pearson") | (method ==
"prho") | (method ==
"cor");
25 inline bool is_spearman(std::string method)
27 return (method ==
"spearman") | (method ==
"srho") | (method ==
"rho");
29 inline bool is_blomqvist(std::string method)
31 return (method ==
"blomqvist") | (method ==
"bbeta") | (method ==
"beta");
34 inline size_t get_min_nobs(std::string method)
36 if (is_hoeffding(method)) {
Weighted dependence measures.
Definition: bbeta.hpp:11