You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hid public Iterable.mean() overloads; There's .average() in stdlib, plus, aside from columns/dfs, creating public mean functions just clutters the public scope. Simplified internal mean logic and function overloads.
* After each release, all messages should be reviewed and updated.
6
6
* Level.WARNING -> Level.ERROR
7
7
* Level.ERROR -> Remove
8
+
*
9
+
* Level.HIDDEN can remain as is but needs to be removed together with other deprecations in
10
+
* the same cycle.
8
11
*/
9
12
10
13
// region WARNING in 0.15, ERROR in 0.16
11
14
12
-
privateconstvalMESSAGE_0_16="Will be removed in 0.16."
15
+
privateconstvalMESSAGE_0_16="Will be ERROR in 0.16."
13
16
14
17
internalconstvalDF_READ_NO_CSV="This function is deprecated and should be replaced with `readCSV`. $MESSAGE_0_16"
15
18
internalconstvalDF_READ_NO_CSV_REPLACE=
@@ -44,11 +47,20 @@ internal const val PARSER_OPTIONS = "This constructor is only here for binary co
44
47
45
48
internalconstvalPARSER_OPTIONS_COPY="This function is only here for binary compatibility. $MESSAGE_0_16"
46
49
50
+
internalconstvalSEQUENCE_FLOAT_MEAN=
51
+
"`Sequence<Float>.mean()` is removed since it's already covered by other overloads. $MESSAGE_0_16"
52
+
53
+
internalconstvalINTERNAL_MEAN=
54
+
"`Iterable.mean(skipNA)` is removed since it's already covered by other overloads. $MESSAGE_0_16"
55
+
56
+
internalconstvalMEAN=
57
+
"`Iterable.mean()` is removed from the public API because it's outside the scope of DataFrame. You can still call `.mean()` on a column. For most types there's already `.average()` in stdlib. $MESSAGE_0_16"
58
+
47
59
// endregion
48
60
49
61
// region WARNING in 0.16, ERROR in 0.17
50
62
51
-
privateconstvalMESSAGE_0_17="Will be removed in 0.17."
63
+
privateconstvalMESSAGE_0_17="Will be ERROR in 0.17."
0 commit comments