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
Input data, in any form that can be converted to an array. This includes lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays.
e.g.
geometric_mean(iforiinrange(10))
This will fail because though it's an iterable, it's not an array_like.
The text was updated successfully, but these errors were encountered:
🐛 Bug
The functions here says they take
iterable
as inputs. However,np.asarray
actually takearray_like
.Quote:
e.g.
This will fail because though it's an
iterable
, it's not anarray_like
.The text was updated successfully, but these errors were encountered: