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: README.md
+29-2
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,23 @@ ___
98
98
99
99
#### Description
100
100
101
-
#### Options
101
+
Replaces a specified missing value in a read in dataset (using the READ keyword).
102
+
103
+
#### Usage
104
+
```
105
+
REPLACE ("missing value", "replacement value")
106
+
```
107
+
*missing value* (required) - specifies a decimal value (below 1) that defines the percentage of data to use for training.
108
+
109
+
*replacement value* (required) - specifies a value to repalce the missing value with. The replacement value can be a string or integer value or optionally a more general metric including:
110
+
111
+
- mean
112
+
- mode
113
+
- median
114
+
- maximum
115
+
- minimum
116
+
- drop row
117
+
- drop column
102
118
___
103
119
104
120
### CLASSIFY
@@ -190,7 +206,18 @@ ___
190
206
191
207
#### Description
192
208
193
-
#### Options
209
+
Splits a dataset that has been read in using the READ keyword into a training, testing, and optionally a validation set. The percentages are randomly split by percentages that add up to 1.
210
+
211
+
#### Usage
212
+
```
213
+
SPLIT (train = ..., test = ..., validation = ...)
214
+
```
215
+
*train* (required) - specifies a decimal value (below 1) that defines the percentage of data to use for training.
216
+
217
+
*test* (required) - specifies a decimal value (below 1) that defines the percentage of data to use for testing.
218
+
219
+
*validation* - specifies a decimal value (below 1) that defines the percentage of data to use for a validation set.
0 commit comments