Skip to content

Commit 726d781

Browse files
committed
fix: add docstring for imputation_method parameter in pca()
1 parent 69e6d3f commit 726d781

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

malariagen_data/anoph/pca.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ def __init__(
4444
`random_seed`.
4545
4646
""",
47+
parameters=dict(
48+
imputation_method="""
49+
Method to use for imputing missing genotype calls. Options are
50+
'mean' (replace missing calls with the mean value at each site,
51+
the default) or 'zero' (replace missing calls with zero).
52+
""",
53+
),
4754
returns=("df_pca", "evr"),
4855
notes="""
4956
This computation may take some time to run, depending on your computing

0 commit comments

Comments
 (0)