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
doesn't implement the [`Collection`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/#kotlin.collections.Collection)
12
12
or [`Iterable`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/)
13
13
interface, it has many similar operations,
14
14
such as [`filter`](filter.md), [`take`](sliceRows.md#take),
@@ -77,12 +77,12 @@ val df2 = df.add("c") { a + b }
77
77
78
78
<tip>
79
79
80
-
To enable extension properties generation you should use [dataframe plugin](schemasGradle.md)
81
-
for Gradle or [Kotlin jupyter kernel](installation.md)
80
+
To enable extension properties generation, you should use the [DataFrame plugin](schemasGradle.md)
81
+
for Gradle or the [Kotlin Jupyter kernel](installation.md)
82
82
83
83
</tip>
84
84
85
-
After data is transformed, [`DataFrame`](DataFrame.md) can be exported
85
+
After your data is transformed, [`DataFrame`](DataFrame.md) instances can be exported
86
86
into [`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/) of another data class using [toList](toList.md) or [toListOf](toList.md#tolistof) extensions:
0 commit comments