我有一个数据集,需要对多个变量执行Tukey_test而不是逐对比较:
我的数据如下:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
... // cell as! YourCell
cell.delegate = self
let period = period[indexPath.row]
cell.period = period
cell.switch.setOn(period == selectedPeriod, animated: false)
...
}
我的代码:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BaseModel extends Model
{
public static function boot()
{
self::observe(ModelObserver::class);
}
}
我的输出:
Subject State Type Success
A AZ 1 0.89
B TX 2 0.91
C NJ 3 0.78
A OH 4 0.91
我希望输出如下:
from statsmodels.stats.multicomp import pairwise_tukeyhsd
from statsmodels.formula.api import ols
from statsmodels.base.model import Model
p1_tukey_test = pairwise_tukeyhsd(data["Success"], data["Subject"] )
f.write("\n\n" + str(p1_tukey_test._results_table))
换句话说,我不想进行成对比较,而是想比较Subject变量的每个类别的总体结果