MCPcopy Create free account
hub / github.com/dask/dask / _ttest_ind_from_stats

Function _ttest_ind_from_stats

dask/array/stats.py:447–453  ·  view source on GitHub ↗
(mean1, mean2, denom, df)

Source from the content-addressed store, hash-verified

445
446
447def _ttest_ind_from_stats(mean1, mean2, denom, df):
448 d = mean1 - mean2
449 with np.errstate(divide="ignore", invalid="ignore"):
450 t = da.divide(d, denom)
451 t, prob = _ttest_finish(df, t)
452
453 return (t, prob)
454
455
456def _ttest_finish(df, t):

Callers 1

ttest_indFunction · 0.85

Calls 1

_ttest_finishFunction · 0.85

Tested by

no test coverage detected