-
Notifications
You must be signed in to change notification settings - Fork 75
faq topic #1316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
faq topic #1316
Conversation
|
||
## Can I work with hierarchical/nested data? | ||
|
||
Yes, Kotlin DataFrame is designed to work with hierarchical data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This page could be useful somewhere here: https://kotlin.github.io/dataframe/hierarchical.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, yeah, I wanted to, but forgot 😄.
|
||
## What data sources are supported? | ||
|
||
<!------TODO data sources----> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will you do it in this PR or later?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and the [Kotlin DataFrame compiler plugin](Compiler-Plugin.md), | ||
you now have a more flexible and powerful alternative. | ||
|
||
Annotate your Kotlin class with [`@DataSchema`](Compiler-Plugin.md#dataschema-declarations), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or alternatively call toDataFrame
on list of Kotlin or Java objects, and resulting DataFrame will have schema according to their properties or getters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice set of questions!
docs/StardustDocs/topics/FAQ.md
Outdated
|
||
## What is Kotlin DataFrame? | ||
|
||
**Kotlin DataFrame** is a Kotlin library for working with tabular data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add that it's written fully in Kotlin like "framework written in pure Kotlin. It is available from maven central repository"
docs/StardustDocs/topics/FAQ.md
Outdated
There is no dedicated Android artifact yet, but you can include the standard **JVM artifact** | ||
by setting up a [custom Gradle configuration](gettingStartedGradleAdvanced.md). | ||
|
||
## How to start with Kotlin DataFrame |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed ?
Both [dataframe schemas](schemas.md) and [extension properties](extensionPropertiesApi.md) | ||
fully support nested data structures, allowing type-safe access and transformations at any depth. | ||
|
||
See [](hierarchical.md) for more information. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missed in []?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Closes #1294