From 0841908aab3ad9385f9826727e8482fbbbbe0b24 Mon Sep 17 00:00:00 2001 From: Gregory Way Date: Wed, 2 Feb 2022 15:54:39 -0700 Subject: [PATCH] Update pycytominer/operations/variance_threshold.py Co-authored-by: Niranj Chandrasekaran --- pycytominer/operations/variance_threshold.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pycytominer/operations/variance_threshold.py b/pycytominer/operations/variance_threshold.py index 401a22e5..6ba82d2b 100644 --- a/pycytominer/operations/variance_threshold.py +++ b/pycytominer/operations/variance_threshold.py @@ -26,8 +26,8 @@ def variance_threshold( freq_cut : float, default 0.05 Ratio (2nd most common feature val / most common). Must range between 0 and 1. Remove features lower than freq_cut. A low freq_cut will remove features - that have large difference between the most common feature and second most - common feature. (e.g. this will remove a feature: [1, 1, 1, 1, 0.01, 0.01, ...]) + that have large difference between the most common feature value and second most + common feature value. (e.g. this will remove a feature: [1, 1, 1, 1, 0.01, 0.01, ...]) unique_cut: float, default 0.01 Ratio (num unique features / num samples). Must range between 0 and 1. Remove features less than unique cut. A low unique_cut will remove features