예제 #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"]