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
I may be late and I cannot find when it was decided,
but I feel that if there should be separate names for max() and maximum(),
then these names should be chosen the other way around.
In my code max(iterable collection) occurs much more frequently
than the multiargument version max(arg1,arg2,...),
and other functions like indmax() and findmax() also relate better.
I have just tested 0.2.0-rc2 and experienced the large number of depreciation warnings
in Winston due to the recent change of max() to maximum() for iterable collection arguments.
Of course Winston and other packages will make this renaming
but the sheer number of occurrences clearly show that the short name max()
is better suited for iterable collections.
Thank you for your consideration.
The text was updated successfully, but these errors were encountered:
There was a long, involved discussion about this: #4235. The current naming is linguistically the least confusing: you take the min of a and b but you find the minimum of a vector or a matrix. The names indmax and findmax are not great anyway, so yeah, maybe some of those need to be changed.
I may be late and I cannot find when it was decided,
but I feel that if there should be separate names for
max()
andmaximum()
,then these names should be chosen the other way around.
In my code
max(iterable collection)
occurs much more frequentlythan the multiargument version
max(arg1,arg2,...)
,and other functions like
indmax()
andfindmax()
also relate better.I have just tested 0.2.0-rc2 and experienced the large number of depreciation warnings
in Winston due to the recent change of
max()
tomaximum()
for iterable collection arguments.Of course Winston and other packages will make this renaming
but the sheer number of occurrences clearly show that the short name
max()
is better suited for iterable collections.
Thank you for your consideration.
The text was updated successfully, but these errors were encountered: