Skip to content

Commit 1520147

Browse files
committed
Adding links to interop guides examples in docs
1 parent 3194e30 commit 1520147

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/StardustDocs/topics/guides/Guides-And-Examples.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,17 @@ Explore our structured, in-depth guides to steadily improve your Kotlin DataFram
4646
— explore the GeoDataFrame module that brings a convenient Kotlin DataFrame API to geospatial workflows,
4747
enhanced with beautiful Kandy-Geo visualizations (*experimental*).
4848

49+
4950
<img src="geoguide_preview.png" border-effect="rounded" width="705"/>
5051

52+
53+
* [Using Unsupported Data Sources](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples):
54+
— A guide by examples. While these might one day become proper integrations of DataFrame, for now,
55+
we provide them as examples for how to make such integrations yourself.
56+
* [Apache Spark Interop](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/spark)
57+
* [Apache Spark Interop (With Kotlin Spark API)](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/kotlinSpark)
58+
* [Multik Interop](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/multik)
59+
* [JetBrains Exposed Interop](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/exposed)
5160
* [OpenAPI Guide](https://github.com/Kotlin/dataframe/blob/master/examples/notebooks/json/KeyValueAndOpenApi.ipynb)
5261
— learn how to parse and explore [OpenAPI](https://swagger.io) JSON structures using Kotlin DataFrame,
5362
enabling structured access and intuitive analysis of complex API schemas (*experimental*, supports OpenAPI 3.0.0).

docs/StardustDocs/topics/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ This is why it was designed to be hierarchical and allows nesting of columns and
4646
* **Minimalistic** — simple, yet powerful data model of three [column kinds](DataColumn.md#column-kinds).
4747
* [**Interoperable**](collectionsInterop.md) — convertable with Kotlin data classes and collections.
4848
This also means conversion to/from other libraries' data structures is usually quite straightforward!
49-
See our examples for some conversions between DataFrame and [Apache Spark](TODO), [Multik](TODO), and [JetBrains Exposed](TODO).
49+
See our [examples](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples)
50+
for some conversions between DataFrame and [Apache Spark](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/spark), [Multik](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/multik), and [JetBrains Exposed](https://github.com/Kotlin/dataframe/tree/master/examples/idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/exposed).
5051
* **Generic** — can store objects of any type, not only numbers or strings.
5152
* **Typesafe** — the Kotlin DataFrame library provides a mechanism of on-the-fly [**generation of extension properties**](extensionPropertiesApi.md)
5253
that correspond to the columns of a data frame.

0 commit comments

Comments
 (0)