本文整理汇总了Python中skillmodels.SkillModel.variable_permutations_for_iv_equations方法的典型用法代码示例。如果您正苦于以下问题:Python SkillModel.variable_permutations_for_iv_equations方法的具体用法?Python SkillModel.variable_permutations_for_iv_equations怎么用?Python SkillModel.variable_permutations_for_iv_equations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类skillmodels.SkillModel
的用法示例。
在下文中一共展示了SkillModel.variable_permutations_for_iv_equations方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_indepvar_permutations
# 需要导入模块: from skillmodels import SkillModel [as 别名]
# 或者: from skillmodels.SkillModel import variable_permutations_for_iv_equations [as 别名]
def test_indepvar_permutations(self):
ret_val = [['y1', 'y2'], ['y3', 'y4']]
self.all_variables_for_iv_equations = Mock(return_value=ret_val)
expected_xs = [
['y1', 'y3'], ['y1', 'y4'], ['y2', 'y3'], ['y2', 'y4']]
calc_xs = smo.variable_permutations_for_iv_equations(self, 1, 1)[0]
assert_equal(calc_xs, expected_xs)
示例2: test_instrument_permutations
# 需要导入模块: from skillmodels import SkillModel [as 别名]
# 或者: from skillmodels.SkillModel import variable_permutations_for_iv_equations [as 别名]
def test_instrument_permutations(self):
ret_val = [['y1_resid', 'y2_resid'], ['y3_resid', 'y4_resid']]
self.all_variables_for_iv_equations = Mock(return_value=ret_val)
expected_zs = [
[['y2'], ['y4']],
[['y2'], ['y3']],
[['y1'], ['y4']],
[['y1'], ['y3']]]
calc_zs = smo.variable_permutations_for_iv_equations(self, 1, 1)[1]
assert_equal(calc_zs, expected_zs)