You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/builtin/ampute.dml
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,6 @@
30
30
# mech a string [either "MAR", "MNAR", or "MCAR"] specifying the missingness mechanism. Chosen "MAR" and "MNAR" settings will be overridden if a non-default weight matrix is specified
31
31
# weights a weight matrix [shape: k-by-m], containing weights that will be used to calculate the weighted sum scores. Will be overridden if mech == "MCAR"
32
32
# seed a manually defined seed for reproducible RNG
# X Matrix with missing values, which are represented as NaNs
32
-
# method Method used for imputing missing values with different performance
33
-
# and accuracy tradeoffs:
34
-
# 'dist' (default): Compute all-pairs distances and impute the
35
-
# missing values by closest. O(N^2 * #features)
36
-
# 'dist_missing': Compute distances between data and records with
37
-
# missing values. O(N*M * #features), assuming
38
-
# that the number of records with MV is M<<N.
39
-
# 'dist_sample': Compute distances between sample of data and
40
-
# records with missing values. O(S*M * #features)
41
-
# with M<<N and S<<N, but suboptimal imputation.
42
-
# seed Root seed value for random/sample calls for deterministic behavior
43
-
# -1 for true randomization
44
-
# sample_frac Sample fraction for 'dist_sample' (value between 0 and 1)
30
+
# X Matrix with missing values, which are represented as NaNs
31
+
# method Method used for imputing missing values with different performance and accuracy tradeoffs:\n
32
+
# - 'dist' (default): Compute all-pairs distances and impute the missing values by closest. O(N^2 * #features)
33
+
# - 'dist_missing': Compute distances between data and records with missing values. O(N*M * #features), assuming that the number of records with MV is M<<N.
34
+
# - 'dist_sample': Compute distances between sample of data and records with missing values. O(S*M * #features) with M<<N and S<<N, but suboptimal imputation.
35
+
#
36
+
# seed Root seed value for random/sample calls for deterministic behavior. -1 for true randomization
37
+
# sample_frac Sample fraction for 'dist_sample' (value between 0 and 1)
0 commit comments