Skip to content

Commit 8c308d6

Browse files
committed
added documentation to split and replace
1 parent 591f4ee commit 8c308d6

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

README.md

+29-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,23 @@ ___
9898

9999
#### Description
100100

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
102118
___
103119

104120
### CLASSIFY
@@ -190,7 +206,18 @@ ___
190206

191207
#### Description
192208

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.
220+
194221
___
195222

196223
### APPLY

0 commit comments

Comments
 (0)