Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into dataframe-output
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs committed May 22, 2024
2 parents 974ea86 + 6f5fed8 commit 677578a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cosmicqc/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def identify_outliers(
Args:
df: pd.DataFrame
Data frame with converted output from CytoTable.
metadata_columns: List[str]
List of metadata columns that should be outputted with the outlier data.
feature_thresholds: Dict[str, float]
One of two options:
A dictionary with the feature name(s) as the key(s) and their assigned
Expand All @@ -50,7 +52,7 @@ def identify_outliers(
or not for use within other functions.
"""

outlier_df = df.copy()
outlier_df = df

thresholds_name = (
f"outlier_{feature_thresholds}"
Expand Down

0 comments on commit 677578a

Please sign in to comment.