Open AlexanderFengler opened 2 years ago
if reg not in self.group_only_nodes: print('PASSED') reg_family["%s_subj_reg" % param] = reg_family.pop( "%s_bottom" % param_lookup )
Should not check whether reg is in self.group_only_nodes, but rather something like whether the current parameter is.
reg
self.group_only_nodes
Is there a fix for this? Is there a way to apply group_only_nodes to some coefficients in a parameter's regression formula?
e.g. if v~ x1 + x2
can x1 vary by participant and x2 be a group only node?
if reg not in self.group_only_nodes: print('PASSED') reg_family["%s_subj_reg" % param] = reg_family.pop( "%s_bottom" % param_lookup )
Should not check whether
reg
is inself.group_only_nodes
, but rather something like whether the current parameter is.