How to normalize a list of positive and negative decimal number to a specific range(如何将正负十进制数列表标准化为特定范围)
问题描述
我有一个十进制数列表如下:
I have a list of decimal numbers as follows:
[-23.5, -12.7, -20.6, -11.3, -9.2, -4.5, 2, 8, 11, 15, 17, 21]
我需要规范化这个列表以适应 [-5,5]
范围.
我如何在python中做到这一点?
I need to normalize this list to fit into the range [-5,5]
.
How can I do it in python?
推荐答案
获取输入范围很简单:
old_min = min(input)
old_range = max(input) - old_min
这是棘手的部分.您可以乘以新范围并除以旧范围,但这几乎可以保证顶部存储桶只会得到一个值.您需要扩大输出范围,使顶部存储桶与所有其他存储桶的大小相同.
Here's the tricky part. You can multiply by the new range and divide by the old range, but that almost guarantees that the top bucket will only get one value in it. You need to expand your output range so that the top bucket is the same size as all the other buckets.
new_min = -5
new_range = 5 + 0.9999999999 - new_min
output = [floor((n - old_min) / old_range * new_range + new_min) for n in input]
这篇关于如何将正负十进制数列表标准化为特定范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将正负十进制数列表标准化为特定范围


基础教程推荐
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 包装空间模型 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01