Message399948
I can't reproduce this now:
>>> statistics.geometric_mean([2, 3, 5, 7])
3.80675409583932
>>> statistics.geometric_mean([2, 3, 5, 7.0])
3.80675409583932
>>> statistics.geometric_mean([2, 3, 5.0, 7.0])
3.80675409583932
>>> statistics.geometric_mean([2, 3.0, 5.0, 7.0])
3.80675409583932
>>> statistics.geometric_mean([2.0, 3.0, 5.0, 7.0])
3.80675409583932
>>>
The current geometric_mean was added in PR12638. Is this issue about a previous version? |
|
| Date |
User |
Action |
Args |
| 2021-08-20 09:51:12 | iritkatriel | set | recipients:
+ iritkatriel, mark.dickinson, steven.daprano |
| 2021-08-20 09:51:12 | iritkatriel | set | messageid: <[email protected]> |
| 2021-08-20 09:51:12 | iritkatriel | link | issue28327 messages |
| 2021-08-20 09:51:12 | iritkatriel | create | |
|