Skip to content

Commit

Permalink
Add equi-width docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdalpino committed Aug 1, 2021
1 parent 5132949 commit b0979df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/transformers/interval-discretizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ Assigns continuous features to ordered categories using variable width per-featu
| # | Name | Default | Type | Description |
|---|---|---|---|---|
| 1 | bins | 5 | int | The number of bins per histogram. |
| 2 | equiWidth | false | bool | Should the bins be equal width? |

## Example
```php
use Rubix\ML\Transformers\IntervalDiscretizer;

$transformer = new IntervalDiscretizer(8);
$transformer = new IntervalDiscretizer(8, false);
```

## Additional Methods
Expand Down

0 comments on commit b0979df

Please sign in to comment.