ttest_ind给出TypeError:/的不支持的操作数类型:'str'和'int'

时间:2018-12-18 14:24:27

标签: python pandas statsmodels p-value t-test

我有一个看起来像这样的数据框:

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'

0 个答案:

没有答案