---
title: MinMaxScaler
framework: createmlcomponents
role: symbol
role_heading: Structure
path: createmlcomponents/minmaxscaler
---

# MinMaxScaler

An estimator that scales the input values so that they all lie in a closed range.

## Declaration

```swift
struct MinMaxScaler<Element> where Element : BinaryFloatingPoint, Element : Decodable, Element : Encodable
```

## Topics

### Creating an estimator

- [init(range:)](createmlcomponents/minmaxscaler/init(range:).md)

### Getting the properties

- [range](createmlcomponents/minmaxscaler/range.md)

### Fitting

- [fitted(to:eventHandler:)](createmlcomponents/minmaxscaler/fitted(to:eventhandler:).md)

### Default Implementations

- [Estimator Implementations](createmlcomponents/minmaxscaler/estimator-implementations.md)

## Relationships

### Conforms To

- [Estimator](createmlcomponents/estimator.md)
- [Sendable](swift/sendable.md)
- [SendableMetatype](swift/sendablemetatype.md)

## See Also

### Scalers

- [StandardScaler](createmlcomponents/standardscaler.md)
- [MaxAbsScaler](createmlcomponents/maxabsscaler.md)
- [NormalizationScaler](createmlcomponents/normalizationscaler.md)
- [RobustScaler](createmlcomponents/robustscaler.md)
