Home
last modified time | relevance | path

Searched refs:ttest_ind (Results 1 – 25 of 37) sorted by relevance

12

/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/tests/
H A Dtest_weightstats.py214 stats.ttest_ind(x1r, x2r), 14)
258 ressm = cm.ttest_ind()
259 resss = stats.ttest_ind(x1r_2d, x2r_2d)
369 res_sp = stats.ttest_ind(x1r, x2r)
376 assert_almost_equal(cm.ttest_ind()[:2], res_sp, 14)
380 assert_almost_equal(cm.ttest_ind()[:2], res_sp, 14)
389 res0 = cm0.ttest_ind(usevar='unequal')
390 res1 = cm1.ttest_ind(usevar='unequal')
391 res2 = cm2.ttest_ind(usevar='unequal')
518 t, p, df = ttest_ind(a, b, usevar='unequal')
[all …]
H A Dtest_tost.py495 resall = smws.ttest_ind(clinic[15:, 2:7], clinic[:15, 2:7],
513 t1 = smws.ttest_ind(x1, x2, alternative='larger', usevar='unequal')
515 t2 = smws.ttest_ind(x1, x2, alternative='smaller', usevar='unequal')
517 t3 = smws.ttest_ind(x1, x2, alternative='smaller', usevar='unequal',
/dports/science/py-scipy/scipy-1.7.1/scipy/stats/tests/
H A Dtest_stats.py3875 t,p = stats.ttest_ind(rvs1, rvs2, axis=0)
3895 t, p = stats.ttest_ind(4., 3.)
3953 t, p = stats.ttest_ind([0, 0, 0], [1, 1, 1])
4071 res0 = stats.ttest_ind(a, b)
4443 t, p = stats.ttest_ind(a, b, equal_var=False)
4453 t, p = stats.ttest_ind(a, b, equal_var=False)
4555 r3 = stats.ttest_ind(y, x[1:])
4569 result = stats.ttest_ind([], [])
4582 result = stats.ttest_ind(a, b, axis=-1)
4596 result = stats.ttest_ind(a, b, axis=1)
[all …]
H A Dtest_mstats_basic.py1087 t, p = mstats.ttest_ind([0, 0, 0], [1, 1, 1])
1092 t, p = mstats.ttest_ind([0, 0, 0], [0, 0, 0])
1103 res1 = stats.ttest_ind(outcome[:, 0], outcome[:, 1])
1104 res2 = mstats.ttest_ind(outcome[:, 0], outcome[:, 1])
1116 res3 = mstats.ttest_ind(outcome[:, :2], outcome[:, 2:])
1133 t, p = mstats.ttest_ind(*pair)
1141 res = mstats.ttest_ind(outcome[:, 0], outcome[:, 1])
1146 res1 = mstats.ttest_ind([], [])
1150 t, p = mstats.ttest_ind([0, 0, 0], [1, 1, 1])
1155 t, p = mstats.ttest_ind([0, 0, 0], [0, 0, 0])
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/
H A Dweightstats.py940 tstat, pvalue, _ = self.ttest_ind(usevar=usevar, value=value)
1014 def ttest_ind(self, alternative="two-sided", usevar="pooled", value=0): member in CompareMeans
1239 tt1 = self.ttest_ind(alternative="larger", usevar=usevar, value=low)
1240 tt2 = self.ttest_ind(alternative="smaller", usevar=usevar, value=upp)
1285 def ttest_ind( function
1338 tstat, pval, dof = cm.ttest_ind(
H A Dapi.py33 from .weightstats import (DescrStatsW, CompareMeans, ttest_ind, ttost_ind,
/dports/science/py-scipy/scipy-1.7.1/benchmarks/benchmarks/
H A Dstats.py89 stats.ttest_ind(self.a, self.b)
90 stats.ttest_ind(self.a, self.b, equal_var=False)
94 stats.ttest_ind(self.a, self.c)
95 stats.ttest_ind(self.a, self.c, equal_var=False)
/dports/benchmarks/hyperfine/hyperfine-1.12.0/scripts/
H A Dwelch_ttest.py29 t, p = stats.ttest_ind(X, Y, equal_var=False)
/dports/devel/grpc/grpc-1.42.0/tools/profiling/microbenchmarks/bm_diff/
H A Dbm_speedup.py29 return stats.ttest_ind(a, b)
/dports/devel/grpc130/grpc-1.30.2/tools/profiling/microbenchmarks/bm_diff/
H A Dbm_speedup.py28 return stats.ttest_ind(a, b)
/dports/devel/grpc134/grpc-1.34.1/tools/profiling/microbenchmarks/bm_diff/
H A Dbm_speedup.py28 return stats.ttest_ind(a, b)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/tools/profiling/microbenchmarks/bm_diff/
H A Dbm_speedup.py28 return stats.ttest_ind(a, b)
/dports/science/pynn/PyNN-0.10.0/test/system/scenarios/
H A Dscenario3.py91 t, p = scipy.stats.ttest_ind(final_weights[:50, :].flat, final_weights[50:, :].flat)
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/examples/
H A Dtry_tukey_hsd.py174 print(mc2.allpairtest(stats.ttest_ind, method='b')[0])
/dports/science/py-nilearn/nilearn-0.8.1/examples/06_manipulating_images/
H A Dplot_roi_extraction.py140 _, p_values = stats.ttest_ind(fmri_data[..., haxby_labels == 'face'],
/dports/math/py-statsmodels/statsmodels-0.13.1/examples/incomplete/
H A Dols_tftest.py192 print(stats.ttest_ind(y[xcat == 0], y[xcat == 1]))
/dports/science/py-scipy/scipy-1.7.1/doc/release/
H A D0.11.0-notes.rst236 The T-tests ``scipy.stats.ttest_ind``, ``scipy.stats.ttest_rel`` and
250 The two-sample T-test ``scipy.stats.ttest_ind`` gained an option to compare
/dports/devel/py-dask/dask-2021.11.2/docs/source/
H A Darray-api.rst422 stats.ttest_ind
/dports/biology/py-orange3-bioinformatics/Orange3-Bioinformatics-4.3.1/orangecontrib/bioinformatics/utils/
H A Dstatistics.py29 scores, pvalues = scipy.stats.ttest_ind(a, b, axis=axis)
/dports/biology/py-scikit-bio/scikit-bio-0.5.6/skbio/stats/tests/
H A Dtest_composition.py1000 significance_test=scipy.stats.ttest_ind)
1012 significance_test=scipy.stats.ttest_ind)
1156 significance_test=scipy.stats.ttest_ind)
/dports/devel/py-dask/dask-2021.11.2/dask/array/
H A Dstats.py77 def ttest_ind(a, b, axis=0, equal_var=True): function
/dports/biology/py-scikit-bio/scikit-bio-0.5.6/skbio/stats/
H A Dcomposition.py1186 significance_test=scipy.stats.ttest_ind):
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/sandbox/stats/
H A Dmulticomp.py1911 tablett, restt, arrtt = multicomp.allpairtest(stats.ttest_ind)
1926 tablett, restt, arrtt = multicompr.allpairtest(stats.ttest_ind)
/dports/science/afni/afni-AFNI_21.3.16/src/pkundu/meica.libs/
H A Dselect_model.py267 tt_table[ii,:2] = stats.ttest_ind(signal_FR2_Z,noise_FR2_Z,equal_var=False)
/dports/science/py-nilearn/nilearn-0.8.1/doc/manipulating_images/
H A Dmanipulating_images.rst231 function :func:`scipy.stats.ttest_ind`.

12