我有一个看起来像这样的数据框:
df:
Method Success
A 0.67
B 0.71
C 0.88
A 0.91
B 0.45
C 0.91
代码:
t,p= stats.ttest_ind(group["Method"],group["Success"])
输出:
TypeError: unsupported operand type(s) for /: 'str' and 'int'