17 is_hoeffding(std::string method)
19 return (method ==
"hoeffding") || (method ==
"hoeffd") || (method ==
"d");
22 is_kendall(std::string method)
24 return (method ==
"kendall") || (method ==
"ktau") || (method ==
"tau");
27 is_pearson(std::string method)
29 return (method ==
"pearson") || (method ==
"prho") || (method ==
"cor");
32 is_spearman(std::string method)
34 return (method ==
"spearman") || (method ==
"srho") || (method ==
"rho");
37 is_blomqvist(std::string method)
39 return (method ==
"blomqvist") || (method ==
"bbeta") || (method ==
"beta");
42 is_chatterjee(std::string method)
44 return (method ==
"chatterjee") || (method ==
"cxi") || (method ==
"xi");
48 is_supported(std::string method)
50 return is_hoeffding(method) || is_kendall(method) || is_pearson(method) ||
51 is_spearman(method) || is_blomqvist(method) || is_chatterjee(method);
55 get_min_nobs(std::string method)
57 if (is_hoeffding(method)) {
Weighted dependence measures.
Definition: wdm.hpp:19