File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ collection := #( #( 7 2 5 6 ) #( 7 nil 5 9 ) #( 10 2 nil 6 ) ).
4444AISimpleImputer new
4545 useMostFrequent;
4646 fit: collection;
47- statistics; "#( 7 2 5 6 )"
48- transform: collection "#( #( 7 2 5 6 ) #( 7 2 5 9 ) #( 10 2 5 6 ) )"
47+ statistics; "#( 7 2 5 6 )"
48+ transform: collection "#( #( 7 2 5 6 ) #( 7 2 5 9 ) #( 10 2 5 6 ) )"
4949```
5050
5151I can also be used to fill missing values of a [ ` DataFrame ` ] ( https://github.com/PolyMathOrg/DataFrame ) :
@@ -81,8 +81,8 @@ collection := #( #( 7 2 5 6 ) #( 7 nil 5 9 ) #( 10 2 nil 6 ) ).
8181AISimpleImputer new
8282 useMostFrequent;
8383 fit: collection;
84- statistics; "#( 7 2 5 6 )"
85- transform: collection "#( #( 7 2 5 6 ) #( 7 2 5 9 ) #( 10 2 5 6 ) )"
84+ statistics; "#( 7 2 5 6 )"
85+ transform: collection "#( #( 7 2 5 6 ) #( 7 2 5 9 ) #( 10 2 5 6 ) )"
8686```
8787
8888or
You can’t perform that action at this time.
0 commit comments