MCPcopy Create free account
hub / github.com/AutoViML/AutoViz / __init__

Method __init__

autoviz/AutoViz_Class.py:581–590  ·  view source on GitHub ↗
(self, quantile=0.87, cat_fill_value='missing',
                 num_fill_value=9999, rare_threshold=0.01,
                 correlation_threshold=0.9)

Source from the content-addressed store, hash-verified

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###################################################################################

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected