Skip to content

Commit ef1022c

Browse files
Update README.md
1 parent 21d52b3 commit ef1022c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,24 +64,28 @@ weather := DataFrame withRows: #(
6464
```Smalltalk
6565
weather removeRowAt: 3.
6666
```
67+
<img width="700" src="img/weatherDfRemoveRow.png">
6768

6869
### Adding a row to the data frame
6970

7071
```Smalltalk
7172
weather addRow: #(-1.2 true snow) named:''.
7273
```
74+
<img width="700" src="img/weatherDfAddRow.png">
7375

7476
### Replacing the data in the first row and third column with 'snow'
7577

7678
```Smalltalk
7779
weather at:1 at:3 put:#snow.
7880
```
81+
<img width="700" src="img/weatherDfReplaceData.png">
7982

8083
### Transpose of the data frame
8184

8285
```Smalltalk
8386
weather transposed.
8487
```
88+
<img width="700" src="img/weatherDfTranspose.png">
8589

8690
## DataFrame Booklet
8791

0 commit comments

Comments
 (0)