File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/acore/imputation_analysis Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def imputation_KNN(
1616 K-Nearest Neighbors imputation for pandas dataframes with missing data. For more
1717 information visit `fancyimpute`_.
1818
19- .. _fancyimpute:https://github.com/iskandr/fancyimpute/blob/HEAD/fancyimpute/knn.py
19+ .. _fancyimpute: https://github.com/iskandr/fancyimpute/blob/HEAD/fancyimpute/knn.py
2020
2121 :param data: pandas dataframe with samples as rows and protein identifiers as
2222 columns (with additional columns 'group', 'sample' and 'subject').
@@ -74,6 +74,7 @@ def imputation_mixed_norm_KNN(
7474):
7575 """
7676 Missing values are replaced in two steps:
77+
7778 1) using k-Nearest Neighbors we impute protein columns with a higher ratio of
7879 missing/valid values than the defined cutoff,
7980 2) the remaining missing values are replaced by random numbers that are drawn
@@ -120,7 +121,7 @@ def imputation_normal_distribution(
120121 separately.
121122 For more information visit `replacemissingfromgaussian`_ in coxdocs from MaxQuant.
122123
123- .. _replacemissingfromgaussian:https://cox-labs.github.io/coxdocs/\
124+ .. _replacemissingfromgaussian: https://cox-labs.github.io/coxdocs/\
124125 replacemissingfromgaussian.html
125126
126127 :param data: pandas dataframe with samples as rows and protein identifiers as
You can’t perform that action at this time.
0 commit comments