(self, quantile=0.87, cat_fill_value='missing',
num_fill_value=9999, rare_threshold=0.01,
correlation_threshold=0.9)
| 579 | """ |
| 580 | |
| 581 | def __init__(self, quantile=0.87, cat_fill_value='missing', |
| 582 | num_fill_value=9999, rare_threshold=0.01, |
| 583 | correlation_threshold=0.9): |
| 584 | super().__init__() # Call the parent class constructor |
| 585 | # Additional initialization code here |
| 586 | self.quantile = quantile |
| 587 | self.cat_fill_value = cat_fill_value |
| 588 | self.num_fill_value = num_fill_value |
| 589 | self.rare_threshold = rare_threshold |
| 590 | self.correlation_threshold = correlation_threshold |
| 591 | |
| 592 | |
| 593 | ################################################################################### |
nothing calls this directly
no outgoing calls
no test coverage detected