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
Check out the [custom setup page](https://kotlin.github.io/dataframe/gettingstartedgradleadvanced.html) if you don't need some of the formats as dependencies,
104
+
Make sure that you have `mavenCentral()` in the list of repositories:
105
+
106
+
```kotlin
107
+
repositories {
108
+
mavenCentral()
109
+
}
110
+
```
111
+
112
+
Refer to the
113
+
[Get started with Kotlin DataFrame on Gradle](https://kotlin.github.io/dataframe/gettingstartedgradle.html)
114
+
for details.
115
+
Also, check out the [custom setup page](https://kotlin.github.io/dataframe/gettingstartedgradleadvanced.html)
116
+
if you don't need some formats as dependencies,
66
117
for Groovy, and for configurations specific to Android projects.
67
118
68
119
## Code example
69
120
121
+
This example of Kotlin DataFrame code with
122
+
the [Compiler Plugin](https://kotlin.github.io/dataframe/compiler-plugin.html) enabled.
123
+
See [the full project](https://github.com/Kotlin/dataframe/tree/master/examples/kotlin-dataframe-plugin-example).
124
+
See also
125
+
[this example in Kotlin Notebook](https://github.com/Kotlin/dataframe/tree/master/examples/notebooks/readme_example.ipynb).
0 commit comments