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
{{ message }}
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
importturicreateastcsa=tc.SArray(range(10))
d= {1:1}
sa.filter_by(d.keys()) # Does not work sa.filter_by(d.values()) # Also does not work# of course this can be solve by doing: sa.filter_by(list(d.keys()))
sa.filter_by(list(d.values()))
This issue is only effecting Python 3. This issues should also be fixed for sframe.filter_by.
The fix here could be quite similar to #1723. However we should consider doing something more general, rather than special casing each possible type. We probably want to allow any iterable type as input. Determining if an object is iterable is not straight forward.
The text was updated successfully, but these errors were encountered:
This issue is only effecting Python 3. This issues should also be fixed for
sframe.filter_by
.The fix here could be quite similar to #1723. However we should consider doing something more general, rather than special casing each possible type. We probably want to allow any iterable type as input. Determining if an object is iterable is not straight forward.
The text was updated successfully, but these errors were encountered: