File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121from typing import TYPE_CHECKING , Any
2222
2323import humps
24- from hopsworks_apigen import public
24+ from hopsworks_apigen import deprecated , public
2525
2626
2727if TYPE_CHECKING :
@@ -157,6 +157,18 @@ def std_dev(self) -> float | None:
157157 """Standard deviation of the feature values."""
158158 return self ._std_dev
159159
160+ @public
161+ @property
162+ @deprecated (
163+ "hsfs.transformation_statistics.FeatureTransformationStatistics.std_dev"
164+ )
165+ def stddev (self ) -> float | None :
166+ """Standard deviation of the feature values.
167+
168+ Deprecated alias for [`std_dev`][hsfs.transformation_statistics.FeatureTransformationStatistics.std_dev].
169+ """
170+ return self ._std_dev
171+
160172 @public
161173 @property
162174 def percentiles (self ) -> Mapping [str , float ] | None :
You can’t perform that action at this time.
0 commit comments