File tree 3 files changed +18
-2
lines changed
statistical_methods_library/imputation
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Statistical Methods Library 9.1.1
2
+
3
+ Release date: 2023-02-07
4
+
5
+ ## Synopsis
6
+
7
+ This release removes a piece of unused code in back data handling.
8
+
9
+ ## Changes
10
+
11
+ In the Ratio of Means imputation method, an attempt was made to drop a
12
+ non-existent column (the input target column) from the back data. This was
13
+ silently failing and so has been removed.
14
+
15
+ ## Notes
16
+
17
+ This change has no functional impact.
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " statistical_methods_library"
3
- version = " 9.1.0 "
3
+ version = " 9.1.1 "
4
4
description = " "
5
5
authors = [" Your Name <you@example.com>" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change @@ -290,7 +290,6 @@ def prepare_df(df: DataFrame) -> DataFrame:
290
290
& (col (marker_col ) != lit (Marker .BACKWARD_IMPUTE .value ))
291
291
)
292
292
)
293
- .drop ("target" )
294
293
.withColumn ("previous_period" , calculate_previous_period (col ("period" )))
295
294
.withColumn ("next_period" , calculate_next_period (col ("period" )))
296
295
)
You can’t perform that action at this time.
0 commit comments