当前位置: 首页>>代码示例>>Python>>正文


Python SkillModel.variable_permutations_for_iv_equations方法代码示例

本文整理汇总了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)
开发者ID:suri5471,项目名称:skillmodels,代码行数:10,代码来源:skill_model_test.py

示例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)
开发者ID:suri5471,项目名称:skillmodels,代码行数:14,代码来源:skill_model_test.py


注:本文中的skillmodels.SkillModel.variable_permutations_for_iv_equations方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。