You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -324,6 +342,11 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
324
342
325
343
# Last updates
326
344
345
+
## Version 0.1.0 alpha 13
346
+
- Allow to bind JSONiq variables to pandas dataframes
347
+
- Allow to retrieve the output of a JSONiq query as a pandas dataframes (if the output is available as a dataframe, i.e., availableOutputs() returns a list that contains "DataFrame")
348
+
- Clean up the mapping to strictly map tuples to sequence of items, and lists ot array items. This will avoid confusion between arrays and sequences.
349
+
327
350
## Version 0.1.0 alpha 12
328
351
- Allow to bind JSONiq variables to Python values (mapping Python lists to sequences of items). This makes it possible to manipulate Python values directly with JSONiq and even without any knowledge of Spark at all.
329
352
- renamed bindDataFrameAsVariable() to bind(), which can be used both with DataFrames and Python lists.
raiseValueError("To avoid confusion, a sequence of items must be provided as a Python tuple, not as a Python list. Lists are mapped to single array items, while tuples are mapped to sequences of items. If you want to bind the variable to one array item, then you need to wrap the provided list inside a singleton tuple and try again, or you can also call bindOne() instead.")
0 commit comments