コード例 #1
0
ファイル: White.py プロジェクト: jnesme/STAMP
    def __init__(self, preferences):
        AbstractGroupStatsTestPlugin.__init__(self, preferences)

        self.name = "White's non-parametric t-test"
        self.confIntervMethods = ["DP: bootstrap"]

        self.preferences = preferences

        self.bSingleFeatureInterface = False
コード例 #2
0
ファイル: White.py プロジェクト: mlangill/STAMP
    def __init__(self, preferences):
        AbstractGroupStatsTestPlugin.__init__(self, preferences)

        self.name = "White's non-parametric t-test"
        self.confIntervMethods = ["DP: bootstrap"]

        self.preferences = preferences

        self.bSingleFeatureInterface = False
コード例 #3
0
ファイル: Welch.py プロジェクト: jnesme/STAMP
    def __init__(self, preferences):
        AbstractGroupStatsTestPlugin.__init__(self, preferences)

        self.name = "Welch's t-test"
        self.confIntervMethods = ["DP: Welch's inverted"]
コード例 #4
0
ファイル: Ttest.py プロジェクト: jnesme/STAMP
	def __init__(self, preferences):
		AbstractGroupStatsTestPlugin.__init__(self, preferences)
		
		self.name = "t-test (equal variance)"
		self.confIntervMethods = ["DP: t-test inverted"]
コード例 #5
0
	def __init__(self, preferences):
		AbstractGroupStatsTestPlugin.__init__(self, preferences)
		
		self.name = "t-test (equal variance)"
		self.confIntervMethods = ["DP: t-test inverted"]
コード例 #6
0
ファイル: Welch.py プロジェクト: mlangill/STAMP
    def __init__(self, preferences):
        AbstractGroupStatsTestPlugin.__init__(self, preferences)

        self.name = "Welch's t-test"
        self.confIntervMethods = ["DP: Welch's inverted"]