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
|`DataColumn.createFrameColumn(name, df, startIndices)`|`df.chunked(name, startIndices)`| Replaced with an other function. |
117
-
|`DataColumn.createWithTypeInference(name, values, nullable)`|`DataColumn.createByInference(name, values, TypeSuggestion.Infer, nullable)`| Replaced with an other function. |
118
-
|`DataColumn.create(name, values, infer)`|`DataColumn.createByType(name, values, infer)`| Replaced with an other function. |
131
+
|`DataColumn.createFrameColumn(name, df, startIndices)`|`df.chunked(name, startIndices)`| Replaced with another function.|
132
+
|`DataColumn.createWithTypeInference(name, values, nullable)`|`DataColumn.createByInference(name, values, TypeSuggestion.Infer, nullable)`| Replaced with another function.|
133
+
|`DataColumn.create(name, values, infer)`|`DataColumn.createByType(name, values, infer)`| Replaced with another function.|
119
134
|`col.isComparable()`|`col.valuesAreComparable()`| Renamed to better reflect its purpose. |
120
-
|`df.minus { columns }`|`df.remove { columns }`| Replaced with an other function. |
135
+
|`df.minus { columns }`|`df.remove { columns }`| Replaced with another function.|
121
136
|`df.move { columns }.toLeft()`/`df.moveToLeft{ columns }`|`df.move { columns }.toStart()`/`df.moveToStart { columns }`| Renamed to better reflect its purpose. |
122
137
|`df.move { columns }.toRight()`/`df.moveToRight{ columns }`|`df.move { columns }.toEnd()`/`df.moveToEnd{ columns }`| Renamed to better reflect its purpose. |
123
138
|`row.rowMin()`/`row.rowMinOrNull()`|`row.rowMinOf()`/`row.rowMinOfOrNull()`| Renamed to better reflect its purpose. |
@@ -129,10 +144,10 @@ The next functions and classes raise `ERROR` in 1.0 and will be removed in 1.1.
129
144
|`df.writeHTML()`|`df.writeHtml()`| Renamed to the correct CamelCase. |
130
145
|`asURL(fileOrUrl)`/`isURL(path)`|`asUrl(fileOrUrl)`/`isUrl(path)`| Renamed to the correct CamelCase. |
131
146
|`df.convert { columns }.toURL()`/`df.convertToURL { columns }`|`df.convert { columns }.toUrl()`/`df.convertToUrl { columns }`| Renamed to the correct CamelCase. |
132
-
|`df.filterBy(column)`|`df.filter { column }`| Replaced with an other function. |
147
+
|`df.filterBy(column)`|`df.filter { column }`| Replaced with another function.|
133
148
|`FormattingDSL`|`FormattingDsl`| Renamed to the correct CamelCase. |
134
149
|`RGBColor`|`RgbColor`| Renamed to the correct CamelCase. |
135
-
|`df.insert(column).after(columnPath)`|`df.insert(column).after { columnPath }`| Replaced with an other function. |
150
+
|`df.insert(column).after(columnPath)`|`df.insert(column).after { columnPath }`| Replaced with another function.|
136
151
|`CompareResult.Equals` / `CompareResult.isEqual()`|`CompareResult.Matches` / `CompareResult.matches()`| Renamed to better reflect its purpose. |
137
152
|`CompareResult.isSuperOrEqual()`|`CompareResult.isSuperOrMatches()`| Renamed to better reflect its purpose. |
138
153
@@ -141,8 +156,8 @@ The next functions and classes raise `WARNING` in 1.0 and `ERROR` in 1.1.
|`df.split { columns }.default(..)` / `df.split { columns }.into(..)` / `df.split { columns }.inward(..)`|`df.split { columns }.by(..).default(..)` / `df.split { columns }.by(..).into(..)` / `df.split { columns }.by(..).inward(..)`| Removed a shortcut to clarify the behaviour; Only for `String` columns. |
144
-
|`dataFrameOf(header, values)`|`dataFrameOf(header).withValues(values)`| Replaced with an other function. |
145
-
|`df.generateCode(..)`|`df.generateInterfaces(..)`| Replaced with an other function. |
159
+
|`dataFrameOf(header, values)`|`dataFrameOf(header).withValues(values)`| Replaced with another function.|
160
+
|`df.generateCode(..)`|`df.generateInterfaces(..)`| Replaced with another function.|
146
161
|`df.select { mapToColumn(name, infer) { body } }`|`df.select { expr(name, infer) { body } }`| Removed duplicated functionality. |
147
162
|`stringCol.length()`|`stringCol.map { it?.length ?: 0 }`| Removed a shortcut to clarify the behaviour; Only for `String` columns. |
148
163
|`stringCol.lowercase()` / `stringCol.uppercase()`|`stringCol.map { it?.lowercase() }` / `stringCol.map { it?.uppercase() }`| Removed a shortcut to clarify the behaviour; Only for `String` columns. |
0 commit comments