We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
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?
Sorry, something went wrong.
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: