https://github.com/xga0/rescale-package
A function that can transform features by scaling each feature to a given range. The input should be (input list, new minimum value, new maximum value).
https://github.com/xga0/rescale-package
python-package scale
Last synced: 3 months ago
JSON representation
A function that can transform features by scaling each feature to a given range. The input should be (input list, new minimum value, new maximum value).
- Host: GitHub
- URL: https://github.com/xga0/rescale-package
- Owner: xga0
- License: mit
- Created: 2020-03-07T23:44:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-08T00:31:27.000Z (over 6 years ago)
- Last Synced: 2025-12-16T04:40:16.475Z (6 months ago)
- Topics: python-package, scale
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rescaler
https://pypi.org/project/rescaler/ \
A package that can transform features by scaling each feature to a given range. The input should be (input list, new minimum value, new maximum value). This is more light weight and easy to use than sklearn.preprocessing.MinMaxScaler. This package can simply and quickly rescale each element of the input list into a new value within the range, and generate a new list.
### Parameters
**`rescaler.rescale`**
* `input_list` A list.
* `newmin` The minimum value of the new scale.
* `newmax` The maximum value of the new scale.