Skip to content

Commit 3cc9093

Browse files
authored
readability
1 parent d5ef0e2 commit 3cc9093

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ collection := #( #( 7 2 5 6 ) #( 7 nil 5 9 ) #( 10 2 nil 6 ) ).
4444
AISimpleImputer 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

5151
I 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 ) ).
8181
AISimpleImputer 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

8888
or

0 commit comments

Comments
 (0)