Skip to content

Commit cd2a7a9

Browse files
committedJul 5, 2022
test data folder structure with function name.
1 parent 97d53b5 commit cd2a7a9

File tree

165 files changed

+459
-295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+459
-295
lines changed
 

‎statistical_methods_library/estimation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def ht_ratio(
3333
calibration_weight_col: typing.Optional[str] = "calibration_weight",
3434
) -> DataFrame:
3535
"""
36-
Perform estimation of design and calibration weights using Expansion and
37-
Ratio estimation.
36+
Perform Horvitz-Thompson estimation of design and calibration weights
37+
using Expansion and Ratio estimation.
3838
3939
###Arguments
4040
* `input_df`: The input data frame.

‎statistical_methods_library/outliering.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def winsorisation(
4343
calibration_col: typing.Optional[str] = None,
4444
auxiliary_col: typing.Optional[str] = None,
4545
marker_col: typing.Optional[str] = "winsorisation_marker",
46-
):
46+
) -> DataFrame:
4747
"""
4848
Perform One-sided Winsorisation.
4949

0 commit comments

Comments
 (0)
Please sign in to comment.