@@ -35,34 +35,34 @@ class IncrementalBasicStatistics(BasicStatistics):
3535
3636 Attributes
3737 ----------
38- min_ : ndarray of shape (n_features,)
38+ min : ndarray of shape (n_features,)
3939 Minimum of each feature over all samples.
4040
41- max_ : ndarray of shape (n_features,)
41+ max : ndarray of shape (n_features,)
4242 Maximum of each feature over all samples.
4343
44- sum_ : ndarray of shape (n_features,)
44+ sum : ndarray of shape (n_features,)
4545 Sum of each feature over all samples.
4646
47- mean_ : ndarray of shape (n_features,)
47+ mean : ndarray of shape (n_features,)
4848 Mean of each feature over all samples.
4949
50- variance_ : ndarray of shape (n_features,)
50+ variance : ndarray of shape (n_features,)
5151 Variance of each feature over all samples.
5252
53- variation_ : ndarray of shape (n_features,)
53+ variation : ndarray of shape (n_features,)
5454 Variation of each feature over all samples.
5555
56- sum_squares_ : ndarray of shape (n_features,)
56+ sum_squares : ndarray of shape (n_features,)
5757 Sum of squares for each feature over all samples.
5858
59- standard_deviation_ : ndarray of shape (n_features,)
59+ standard_deviation : ndarray of shape (n_features,)
6060 Standard deviation of each feature over all samples.
6161
62- sum_squares_centered_ : ndarray of shape (n_features,)
62+ sum_squares_centered : ndarray of shape (n_features,)
6363 Centered sum of squares for each feature over all samples.
6464
65- second_order_raw_moment_ : ndarray of shape (n_features,)
65+ second_order_raw_moment : ndarray of shape (n_features,)
6666 Second order moment of each feature over all samples.
6767
6868 Notes
0 commit comments