def do_kendallt(list1, list2, alpha=0.05): c, p = kendalltau(list1, list2) if p < alpha: return c return 'n.s.'