-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cd5177
commit 3358454
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
def initialize_warnings_in_workers(show_warnings: bool) -> None: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from typing import List | ||
from typing import Optional | ||
|
||
import pandas as pd | ||
|
||
def calculate_relevance_table( | ||
X: pd.DataFrame, | ||
y: pd.Series, | ||
ml_task: str = ..., | ||
multiclass: bool = ..., | ||
n_significant: int = ..., | ||
n_jobs: int = ..., | ||
show_warnings: bool = ..., | ||
chunksize: Optional[int] = ..., | ||
test_for_binary_target_binary_feature: str = ..., | ||
test_for_binary_target_real_feature: str = ..., | ||
test_for_real_target_binary_feature: str = ..., | ||
test_for_real_target_real_feature: str = ..., | ||
fdr_level: float = ..., | ||
hypotheses_independent: bool = ..., | ||
) -> pd.DataFrame: ... | ||
|
||
def infer_ml_task(y: pd.Series) -> str: ... | ||
def combine_relevance_tables(relevance_tables: List[pd.DataFrame]) -> pd.DataFrame: ... | ||
def get_feature_type(feature_column: pd.Series) -> str: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import pandas as pd | ||
|
||
def target_binary_feature_binary_test(x: pd.Series, y: pd.Series) -> float: ... | ||
def target_binary_feature_real_test(x: pd.Series, y: pd.Series, test: str) -> float: ... | ||
def target_real_feature_binary_test(x: pd.Series, y: pd.Series) -> float: ... | ||
def target_real_feature_real_test(x: pd.Series, y: pd.Series) -> float: ... |