File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,12 @@ rendering Kotlin dataframes in the Kotlin notebooks plugin of IntelliJ IDEA.
12
12
* ...
13
13
14
14
** 2.1.0:**
15
- * Added a ` types ` property to dataframe and and row metadata. It contains column
15
+ * Added a ` types ` property to dataframe and row metadata. It contains column
16
16
information for all groups, frames and values.
17
17
18
+ ** 2.1.1:**
19
+ * Added a new type of ` ValueColumn ` value that is DataFrameConvertable type
20
+
18
21
### Top level json structure
19
22
``` json
20
23
{
@@ -32,8 +35,8 @@ rendering Kotlin dataframes in the Kotlin notebooks plugin of IntelliJ IDEA.
32
35
### Row
33
36
``` json
34
37
{
35
- "<value_column_name1>" : string|Boolean|Double|Int|Float|Long|Short|Byte|list, ,
36
- "<value_column_name2>" : string|Boolean|Double|Int|Float|Long|Short|Byte|list, ,
38
+ "<value_column_name1>" : string|Boolean|Double|Int|Float|Long|Short|Byte|list|DataFrameConvertable ,
39
+ "<value_column_name2>" : string|Boolean|Double|Int|Float|Long|Short|Byte|list|DataFrameConvertable ,
37
40
...
38
41
"<column_group_name1>" : ColumnGroup,
39
42
"<column_group_name2>" : ColumnGroup,
@@ -77,3 +80,15 @@ rendering Kotlin dataframes in the Kotlin notebooks plugin of IntelliJ IDEA.
77
80
}
78
81
```
79
82
83
+ ### DataFrameConvertable
84
+ ``` json
85
+ {
86
+ "metadata" : {
87
+ "kind" : " DataFrameConvertable"
88
+ },
89
+ "data" : [ Row, ... ]
90
+ }
91
+ ```
92
+
93
+
94
+
You can’t perform that action at this time.
0 commit comments