Questions tagged «normalize»

19
标准化熊猫数据框的列
我在熊猫中有一个数据框,其中每一列都有不同的值范围。例如: df: A B C 1000 10 0.5 765 5 0.35 800 7 0.09 知道如何将每个值介于0和1之间的数据框的列标准化吗? 我想要的输出是: A B C 1 1 1 0.765 0.5 0.7 0.8 0.7 0.18(which is 0.09/0.5)


8
如何在python中规范化URL
我想知道我是否在python中标准化URL。 例如,如果我有一个网址字符串,例如:“ http://www.example.com/foo goo / bar.html” 我需要python中的库,该库会将多余的空间(或任何其他非标准化字符)转换为正确的URL。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.