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
Update README and documentation, bump dataframe version
Reorganized README, moving version compatibility table and adding more links in the documentation section. Updated documentation for `readSqlDatabases.md`, including a note about the database support limitations. Updated dataframe version in `libs.versions.toml` from `0.12.0` to `0.12.1`. Edited phrasing in `RELEASE_CHECK_LIST.md` and `overview.md`.
Copy file name to clipboardExpand all lines: README.md
+27-14Lines changed: 27 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,21 @@ Kotlin Dataframe aims to reconcile Kotlin's static typing with the dynamic natur
20
20
21
21
Integrates with [Kotlin kernel for Jupyter](https://github.com/Kotlin/kotlin-jupyter). Inspired by [krangl](https://github.com/holgerbrandl/krangl), Kotlin Collections and [pandas](https://pandas.pydata.org/)
22
22
23
+
## Documentation
24
+
23
25
Explore [**documentation**](https://kotlin.github.io/dataframe/overview.html) for details.
24
26
27
+
You could find the following articles there:
28
+
29
+
*[Get started with Kotlin DataFrame](https://kotlin.github.io/dataframe/gettingstarted.html)
30
+
*[Working with Data Schemas](https://kotlin.github.io/dataframe/schemas.html)
31
+
*[Full list of all supported operations](https://kotlin.github.io/dataframe/operations.html)
32
+
*[Reading from SQL databases](https://kotlin.github.io/dataframe/readsqldatabases.html)
33
+
*[Reading/writing from/to different file formats like JSON, CSV, Apache Arrow](https://kotlin.github.io/dataframe/read.html)
34
+
*[Joining a few dataframes](https://kotlin.github.io/dataframe/join.html)
This project and the corresponding community are governed by the [JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct). Please make sure you read it.
Copy file name to clipboardExpand all lines: docs/StardustDocs/topics/overview.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,8 @@ The goal of data wrangling is to assure quality and useful data.
20
20
21
21
## Main Features and Concepts
22
22
23
-
*[**Hierarchical**](hierarchical.md) — the Kotlin DataFrame library provides an ability to read and present data from different sources including not only plain **CSV** but also **JSON**. That’s why it has been designed hierarchical and allows nesting of columns and cells.
23
+
*[**Hierarchical**](hierarchical.md) — the Kotlin DataFrame library provides an ability to read and present data from different sources including not only plain **CSV** but also **JSON** or **[SQL databases](readSqlDatabases.md)**.
24
+
That’s why it has been designed hierarchical and allows nesting of columns and cells.
24
25
25
26
*[**Interoperable**](collectionsInterop.md) — hierarchical data layout also opens a possibility of converting any objects
26
27
structure in application memory to a data frame and vice versa.
0 commit comments