Skip to content

Commit ee2c08d

Browse files
committed
🎨 fix format of links and listing
1 parent 8a1e8d4 commit ee2c08d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/acore/imputation_analysis/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)