Home
last modified time | relevance | path

Searched refs:the_mean (Results 1 – 5 of 5) sorted by relevance

/dports/math/libmesh/libmesh-1.6.2/src/utils/
H A Derror_vector.C75 Real the_mean = 0; in mean() local
81 the_mean += ( static_cast<Real>((*this)[i]) - the_mean ) / (nnz + 1); in mean()
86 return the_mean; in mean()
H A Dstatistics.C81 Real the_mean = 0; in mean() local
85 the_mean += ( static_cast<Real>((*this)[i]) - the_mean ) / in mean()
89 return the_mean; in mean()
/dports/math/gri/gri-2.12.23/src/
H A Dgr_coll.cc548 double the_mean = mean(); in stddev() local
553 double tmp = (contents[i] - the_mean); in stddev()
564 double the_mean = mean(); in skewness() local
569 double tmp = (contents[i] - the_mean); in skewness()
581 double the_mean = mean(); in kurtosis() local
586 double tmp = (contents[i] - the_mean); in kurtosis()
/dports/math/py-pandas/pandas-1.2.5/pandas/core/
H A Dnanops.py639 the_mean = the_sum / count
642 the_mean[ct_mask] = np.nan
644 the_mean = the_sum / count if count > 0 else np.nan
646 return the_mean
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/
H A Dtest_reductions.py871 the_mean = float_string_frame.mean(axis=0)
873 tm.assert_index_equal(the_sum.index, the_mean.index)
874 assert len(the_mean.index) < len(float_string_frame.columns)
877 the_mean = float_string_frame.mean(axis=1)
879 tm.assert_index_equal(the_sum.index, the_mean.index)