Skip to content

Commit dbc3419

Browse files
faq improvements
1 parent 0606ff8 commit dbc3419

File tree

1 file changed

+6
-0
lines changed
  • docs/StardustDocs/topics

1 file changed

+6
-0
lines changed

docs/StardustDocs/topics/FAQ.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ you now have a more flexible and powerful alternative.
123123
Annotate your Kotlin class with [`@DataSchema`](Compiler-Plugin.md#dataschema-declarations),
124124
and the plugin will automatically generate type-safe extension properties
125125
for your [`DataFrame`](DataFrame.md).
126+
Or alternatively, call [`toDataFrame()`](createDataFrame.md#todataframe) on a list of Kotlin or Java objects,
127+
and the resulting `DataFrame` will have schema according to their properties or getters.
126128

127129
See [compiler plugin examples](Compiler-Plugin.md#examples).
128130

@@ -147,6 +149,10 @@ with hierarchical structure — using `FrameColumn`
147149
Both [dataframe schemas](schemas.md) and [extension properties](extensionPropertiesApi.md)
148150
fully support nested data structures, allowing type-safe access and transformations at any depth.
149151

152+
See [](hierarchical.md) for more information.
153+
154+
Also, you can transform your data into grouped structures using [`groupBy`](groupBy.md) or [`pivot`](pivot.md).
155+
150156
## Does Kotlin DataFrame support OpenAPI schemas?
151157

152158
Yes — the experimental `dataframe-openapi` module adds support for OpenAPI JSON schemas.

0 commit comments

Comments
 (0)