@@ -23,9 +23,9 @@ import kotlin.reflect.KProperty
23
23
*/
24
24
internal interface FillNulls {
25
25
26
- /* * ## [fillNulls][org.jetbrains.kotlinx.dataframe.api. fillNulls] Operation Usage
26
+ /* * ## [fillNulls][fillNulls] Operation Usage
27
27
*
28
- * [fillNulls][org.jetbrains.kotlinx.dataframe.api. fillNulls] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
28
+ * [fillNulls][fillNulls] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
29
29
*
30
30
* - `[.`[where][org.jetbrains.kotlinx.dataframe.api.Update.where]` { `[rowValueCondition][org.jetbrains.kotlinx.dataframe.documentation.SelectingRows.RowValueCondition.WithExample]` } ]`
31
31
*
@@ -227,9 +227,9 @@ internal inline val Float?.isNA: Boolean get() = this == null || this.isNaN()
227
227
*/
228
228
internal interface FillNaNs {
229
229
230
- /* * ## [fillNaNs][org.jetbrains.kotlinx.dataframe.api. fillNaNs] Operation Usage
230
+ /* * ## [fillNaNs][fillNaNs] Operation Usage
231
231
*
232
- * [fillNaNs][org.jetbrains.kotlinx.dataframe.api. fillNaNs] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
232
+ * [fillNaNs][fillNaNs] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
233
233
*
234
234
* - `[.`[where][org.jetbrains.kotlinx.dataframe.api.Update.where]` { `[rowValueCondition][org.jetbrains.kotlinx.dataframe.documentation.SelectingRows.RowValueCondition.WithExample]` } ]`
235
235
*
@@ -401,9 +401,9 @@ public fun <T, C> DataFrame<T>.fillNaNs(columns: Iterable<ColumnReference<C>>):
401
401
*/
402
402
internal interface FillNA {
403
403
404
- /* * ## [fillNA][org.jetbrains.kotlinx.dataframe.api. fillNA] Operation Usage
404
+ /* * ## [fillNA][fillNA] Operation Usage
405
405
*
406
- * [fillNA][org.jetbrains.kotlinx.dataframe.api. fillNA] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
406
+ * [fillNA][fillNA] `{ `[columns][org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns]` }`
407
407
*
408
408
* - `[.`[where][org.jetbrains.kotlinx.dataframe.api.Update.where]` { `[rowValueCondition][org.jetbrains.kotlinx.dataframe.documentation.SelectingRows.RowValueCondition.WithExample]` } ]`
409
409
*
@@ -639,7 +639,7 @@ private interface CommonDropNullsFunctionDoc
639
639
*
640
640
* `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api.dropNulls]` { `[colsOf][org.jetbrains.kotlinx.dataframe.api.colsOf]`<`[Double][Double]`>() }`
641
641
*
642
- * `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api. dropNulls]`(whereAllNull = true) { `[colsOf][org.jetbrains.kotlinx.dataframe.api. colsOf]`<`[Double][Double]`>() }`
642
+ * `df.`[dropNulls][dropNulls]`(whereAllNull = true) { `[colsOf][colsOf]`<`[Double][Double]`>() }`
643
643
* @param whereAllNull `false` by default.
644
644
* If `true`, rows are dropped if all selected cells are `null`.
645
645
* If `false`, rows are dropped if any of the selected cells is `null`.
@@ -662,7 +662,7 @@ public fun <T> DataFrame<T>.dropNulls(whereAllNull: Boolean = false, columns: Co
662
662
*
663
663
* For more information: [See `dropNulls` on the documentation website.](https://kotlin.github.io/dataframe/drop.html#dropnulls)
664
664
* ## This Drop Nulls Overload
665
- * This overload operates on all columns in the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] .
665
+ * This overload operates on all columns in the [DataFrame].
666
666
* @param whereAllNull `false` by default.
667
667
* If `true`, rows are dropped if all selected cells are `null`.
668
668
* If `false`, rows are dropped if any of the selected cells is `null`.
@@ -690,7 +690,7 @@ public fun <T> DataFrame<T>.dropNulls(whereAllNull: Boolean = false): DataFrame<
690
690
*
691
691
* `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api.dropNulls]`(Person::length, Person::age)`
692
692
*
693
- * `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api. dropNulls]`(Person::length, whereAllNull = true)`
693
+ * `df.`[dropNulls][dropNulls]`(Person::length, whereAllNull = true)`
694
694
* @param whereAllNull `false` by default.
695
695
* If `true`, rows are dropped if all selected cells are `null`.
696
696
* If `false`, rows are dropped if any of the selected cells is `null`.
@@ -717,7 +717,7 @@ public fun <T> DataFrame<T>.dropNulls(vararg columns: KProperty<*>, whereAllNull
717
717
*
718
718
* `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api.dropNulls]`("length", "age")`
719
719
*
720
- * `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api. dropNulls]`("length", whereAllNull = true)`
720
+ * `df.`[dropNulls][dropNulls]`("length", whereAllNull = true)`
721
721
* @param whereAllNull `false` by default.
722
722
* If `true`, rows are dropped if all selected cells are `null`.
723
723
* If `false`, rows are dropped if any of the selected cells is `null`.
@@ -748,7 +748,7 @@ public fun <T> DataFrame<T>.dropNulls(vararg columns: String, whereAllNull: Bool
748
748
*
749
749
* `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api.dropNulls]`(length, age)`
750
750
*
751
- * `df.`[dropNulls][org.jetbrains.kotlinx.dataframe.api. dropNulls]`(length, whereAllNull = true)`
751
+ * `df.`[dropNulls][dropNulls]`(length, whereAllNull = true)`
752
752
* @param whereAllNull `false` by default.
753
753
* If `true`, rows are dropped if all selected cells are `null`.
754
754
* If `false`, rows are dropped if any of the selected cells is `null`.
@@ -847,7 +847,7 @@ private interface CommonDropNAFunctionDoc
847
847
*
848
848
* `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api.dropNA]` { `[colsOf][org.jetbrains.kotlinx.dataframe.api.colsOf]`<`[Double][Double]`>() }`
849
849
*
850
- * `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api. dropNA]`(whereAllNA = true) { `[colsOf][org.jetbrains.kotlinx.dataframe.api. colsOf]`<`[Double][Double]`>() }`
850
+ * `df.`[dropNA][dropNA]`(whereAllNA = true) { `[colsOf][colsOf]`<`[Double][Double]`>() }`
851
851
* @param whereAllNA `false` by default.
852
852
* If `true`, rows are dropped if all selected cells are [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
853
853
* If `false`, rows are dropped if any of the selected cells is [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
@@ -879,7 +879,7 @@ public fun <T> DataFrame<T>.dropNA(whereAllNA: Boolean = false, columns: Columns
879
879
*
880
880
* `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api.dropNA]`(Person::length, Person::age)`
881
881
*
882
- * `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api. dropNA]`(Person::length, whereAllNA = true)`
882
+ * `df.`[dropNA][dropNA]`(Person::length, whereAllNA = true)`
883
883
* @param whereAllNA `false` by default.
884
884
* If `true`, rows are dropped if all selected cells are [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
885
885
* If `false`, rows are dropped if any of the selected cells is [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
@@ -906,7 +906,7 @@ public fun <T> DataFrame<T>.dropNA(vararg columns: KProperty<*>, whereAllNA: Boo
906
906
*
907
907
* `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api.dropNA]`("length", "age")`
908
908
*
909
- * `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api. dropNA]`("length", whereAllNA = true)`
909
+ * `df.`[dropNA][dropNA]`("length", whereAllNA = true)`
910
910
* @param whereAllNA `false` by default.
911
911
* If `true`, rows are dropped if all selected cells are [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
912
912
* If `false`, rows are dropped if any of the selected cells is [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
@@ -937,7 +937,7 @@ public fun <T> DataFrame<T>.dropNA(vararg columns: String, whereAllNA: Boolean =
937
937
*
938
938
* `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api.dropNA]`(length, age)`
939
939
*
940
- * `df.`[dropNA][org.jetbrains.kotlinx.dataframe.api. dropNA]`(length, whereAllNA = true)`
940
+ * `df.`[dropNA][dropNA]`(length, whereAllNA = true)`
941
941
* @param whereAllNA `false` by default.
942
942
* If `true`, rows are dropped if all selected cells are [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
943
943
* If `false`, rows are dropped if any of the selected cells is [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
@@ -969,7 +969,7 @@ public fun <T> DataFrame<T>.dropNA(columns: Iterable<AnyColumnReference>, whereA
969
969
*
970
970
* For more information: [See `dropNA` on the documentation website.](https://kotlin.github.io/dataframe/drop.html#dropna)
971
971
* ## This Drop NA Overload
972
- * This overload operates on all columns in the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] .
972
+ * This overload operates on all columns in the [DataFrame].
973
973
* @param whereAllNA `false` by default.
974
974
* If `true`, rows are dropped if all selected cells are [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
975
975
* If `false`, rows are dropped if any of the selected cells is [`NA`][org.jetbrains.kotlinx.dataframe.documentation.NA].
@@ -1055,7 +1055,7 @@ private interface CommonDropNaNsFunctionDoc
1055
1055
*
1056
1056
* `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api.dropNaNs]` { `[colsOf][org.jetbrains.kotlinx.dataframe.api.colsOf]`<`[Double][Double]`>() }`
1057
1057
*
1058
- * `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api. dropNaNs]`(whereAllNaN = true) { `[colsOf][org.jetbrains.kotlinx.dataframe.api. colsOf]`<`[Double][Double]`>() }`
1058
+ * `df.`[dropNaNs][dropNaNs]`(whereAllNaN = true) { `[colsOf][colsOf]`<`[Double][Double]`>() }`
1059
1059
* @param whereAllNaN `false` by default.
1060
1060
* If `true`, rows are dropped if all selected cells are [`NaN`][Double.isNaN].
1061
1061
* If `false`, rows are dropped if any of the selected cells is [`NaN`][Double.isNaN].
@@ -1087,7 +1087,7 @@ public fun <T> DataFrame<T>.dropNaNs(whereAllNaN: Boolean = false, columns: Colu
1087
1087
*
1088
1088
* `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api.dropNaNs]`(Person::length, Person::age)`
1089
1089
*
1090
- * `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api. dropNaNs]`(Person::length, whereAllNaN = true)`
1090
+ * `df.`[dropNaNs][dropNaNs]`(Person::length, whereAllNaN = true)`
1091
1091
* @param whereAllNaN `false` by default.
1092
1092
* If `true`, rows are dropped if all selected cells are [`NaN`][Double.isNaN].
1093
1093
* If `false`, rows are dropped if any of the selected cells is [`NaN`][Double.isNaN].
@@ -1114,7 +1114,7 @@ public fun <T> DataFrame<T>.dropNaNs(vararg columns: KProperty<*>, whereAllNaN:
1114
1114
*
1115
1115
* `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api.dropNaNs]`("length", "age")`
1116
1116
*
1117
- * `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api. dropNaNs]`("length", whereAllNaN = true)`
1117
+ * `df.`[dropNaNs][dropNaNs]`("length", whereAllNaN = true)`
1118
1118
* @param whereAllNaN `false` by default.
1119
1119
* If `true`, rows are dropped if all selected cells are [`NaN`][Double.isNaN].
1120
1120
* If `false`, rows are dropped if any of the selected cells is [`NaN`][Double.isNaN].
@@ -1145,7 +1145,7 @@ public fun <T> DataFrame<T>.dropNaNs(vararg columns: String, whereAllNaN: Boolea
1145
1145
*
1146
1146
* `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api.dropNaNs]`(length, age)`
1147
1147
*
1148
- * `df.`[dropNaNs][org.jetbrains.kotlinx.dataframe.api. dropNaNs]`(length, whereAllNaN = true)`
1148
+ * `df.`[dropNaNs][dropNaNs]`(length, whereAllNaN = true)`
1149
1149
* @param whereAllNaN `false` by default.
1150
1150
* If `true`, rows are dropped if all selected cells are [`NaN`][Double.isNaN].
1151
1151
* If `false`, rows are dropped if any of the selected cells is [`NaN`][Double.isNaN].
@@ -1180,7 +1180,7 @@ public fun <T> DataFrame<T>.dropNaNs(
1180
1180
*
1181
1181
* For more information: [See `dropNaNs` on the documentation website.](https://kotlin.github.io/dataframe/drop.html#dropnans)
1182
1182
* ## This Drop NaNs Overload
1183
- * This overload operates on all columns in the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] .
1183
+ * This overload operates on all columns in the [DataFrame].
1184
1184
* @param whereAllNaN `false` by default.
1185
1185
* If `true`, rows are dropped if all selected cells are [`NaN`][Double.isNaN].
1186
1186
* If `false`, rows are dropped if any of the selected cells is [`NaN`][Double.isNaN].
0 commit comments