当我用assortativity.nominal(图形,类型)计算协调系数时 - 我该如何设计表呢?
我有这些专栏:
$users = User::whereHas("price", function($q) use ($currentPrice) {
$q->where("price", $currentPrice);
})
->with(["price" => function ($q) {
$query->where("price", $currentPrice);
})
->get();
所以,"图表"列是 Ego &列改变 - 对吧? 和"类型" Profit_Interest_Ego & Profit_Interest_Alter 。 - 但是如何将这两列合并为一个因子,以便我可以使用assortativity.nominal(graph, types )?