Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PyKX 2.5.2 release updates
Converting PyKX generic lists using the keyword parameter
raw=True
would previously return incorrect results, the values received being the memory address of the individual elements of the list, this has now been resolvedConverting PyKX generic lists using the keyword parameter
raw=True
when explictly required previously would error indicating that the keyword argument was not supplied. This has been resolved with the parameter now appropriately passed to all itemsUse of
get
method onkx.Table
with astr
input will now raise aFutureWarning
indicating that the return type of this method will change with release 3.0.0. Currently this function returns akx.Table
with a single column, in version 3.0.0 this will return a list/vector containing the content of the column to better align with the Pandas API approach.Fix to issue where use of
kx.SymbolAtom
with__getitem__
method onkx.Table
objects would return a table rather then vector/list. The return now mirrors the expected return which matchesstr
type inputsReworked
Table.std()
method to better handle edge cases relating to mixed columns and nulls. Now matching Pandas results. This addresses issues raised here.Fix to issue where loading PyKX on Windows from 2.5.0 could result in a users working directory being changed to
site-packages/pykx
.