Skip to content

Commit 2573a58

Browse files
ktnb guides fixes and additions
1 parent d179b5a commit 2573a58

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed
359 KB
Binary file not shown.

docs/StardustDocs/topics/gettingStarted/gettingStartedKotlinNotebook.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ Or use the latest stable version of Kotlin DataFrame
8181
Let’s create your first Kotlin DataFrame in the notebook — a simple "Hello, World!" style example:
8282

8383
```kotlin
84-
val df = dataFrameOf("name", "age")(
85-
"Alice", 25,
86-
"Bob", 30
84+
val df = dataFrameOf(
85+
"name" to listOf("Alice", "Bob"),
86+
"age" to listOf(25, 30)
8787
)
8888
```
8989

docs/StardustDocs/topics/guides/Kotlin-DataFrame-Features-in-Kotlin-Notebook.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ The [Kotlin Notebook Plugin for IntelliJ IDEA](https://plugins.jetbrains.com/plu
44
combined with Kotlin DataFrame, offers powerful data analysis capabilities within an interactive environment.
55
Here are the key features:
66

7-
<!---TODO add drag-n-drop--->
7+
### Drag-and-Drop Data Files
8+
9+
You can quickly load data into `DataFrame` into a notebook by simply dragging and dropping a file
10+
(.csv/.json/.xlsx and .geojson/.shp) directly into the notebook editor:
11+
12+
<video src="ktnb_drag_n_drop.mp4" controls/>
813

914
### Visual Data Exploration
1015
**Page through your data**:

0 commit comments

Comments
 (0)