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
data ="https://raw.githubusercontent.com/Kotlin/dataframe/1765966904c5920154a4a480aa1fcff23324f477/data/securities.csv"
19
+
data ="https://raw.githubusercontent.com/Kotlin/dataframe/master/data/jetbrains_repositories.csv"
20
20
csvOptions {
21
-
delimiter =';'
21
+
delimiter =','
22
22
}
23
23
}
24
24
}
25
25
```
26
-
In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/Securities.Generated.kt
26
+
In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/JetbrainsRepositories.Generated.kt
27
27
`. Note that name of the Kotlin file is derived from the name of the data file with the suffix `.Generated` and the package
28
-
is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `Securities`. You could specify it explicitly:
28
+
is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `JetbrainsRepositories`. You could specify it explicitly:
0 commit comments