Updated quickstart guide#1906
Open
AndreiKingsley wants to merge 6 commits into
Open
Conversation
Jolanrensen
requested changes
Jun 23, 2026
Jolanrensen
left a comment
Collaborator
There was a problem hiding this comment.
nice job! :) Just a lot of grammar fixes
|
|
||
| This guide shows how to quickly get started with **Kotlin DataFrame**: | ||
| you'll learn how to load data, perform basic transformations, and build a simple plot using Kandy. | ||
| you'll learn how to integrate it to your [Gradle](SetupGradle.md) (or [Maven](SetupMaven.md)) project, |
| ## Write DataFrame | ||
|
|
||
| A `DataFrame` supports writing to all formats that it is capable of reading. | ||
| A `DataFrame` supports writing to all formats that it is capable of reading (except writing to databases, for now). |
Collaborator
There was a problem hiding this comment.
*DataFrame (the library) supports
Collaborator
Author
There was a problem hiding this comment.
and Parquet?
zaleslaw
requested changes
Jun 25, 2026
| // Select "full_name", "stargazers_count" and "topics" columns | ||
| val dfSelected = df.select { full_name and stargazers_count and topics } | ||
| dfSelected | ||
| val dfSelected = dfRepository.select { full_name and stargazers_count and topics } |
Collaborator
There was a problem hiding this comment.
I continue to think, what if we convert these Pythonic names to Kotlin like? full_name -> fullName?
Collaborator
Author
There was a problem hiding this comment.
The problem is the following.
@ColumnNamedoesn't work correctly now, so we can't use in quickstart unforunately, but hope this will be fixed.- We could change column names just after reading using
renameToCamelCasebut I don't want to do that in this guide for better storytelling.
So hopefully we can fix that after fixing @ColumnName.
Now we can write a "standard data preparation in KDF" guide and suggest using renameToCamelCase there.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Made Quickstart Guide more oriented on IJ projects (Gradle/Maven).
Updated the information and added details about the data schemas.
Finally made _shadow_resources.md update a gradle task