File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,8 @@ you now have a more flexible and powerful alternative.
123123Annotate your Kotlin class with [ ` @DataSchema ` ] ( Compiler-Plugin.md#dataschema-declarations ) ,
124124and the plugin will automatically generate type-safe extension properties
125125for 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
127129See [ compiler plugin examples] ( Compiler-Plugin.md#examples ) .
128130
@@ -147,6 +149,10 @@ with hierarchical structure — using `FrameColumn`
147149Both [ dataframe schemas] ( schemas.md ) and [ extension properties] ( extensionPropertiesApi.md )
148150fully 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
152158Yes — the experimental ` dataframe-openapi ` module adds support for OpenAPI JSON schemas.
You can’t perform that action at this time.
0 commit comments