We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c090b4 commit e7784edCopy full SHA for e7784ed
docs/StardustDocs/topics/createDataFrame.md
@@ -145,7 +145,8 @@ Its data schema defines the column that can be used right after the conversion f
145
146
```kotlin
147
val names = listOf("Alice", "Bob", "Charlie")
148
-val df: DataFrame<ValueProperty<String>> = names.toDataFrame()
+// TODO fix with plugin???
149
+val df = names.toDataFrame() as DataFrame<ValueProperty<String>>
150
df.add("length") { value.length }
151
```
152
0 commit comments